You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/css/samples/unused-selector-child-combi.../input.svelte

23 lines
216 B

<style>
article > * {
font-size: 36px;
}
article * {
font-size: 36px;
}
.article > * {
font-size: 48px;
}
div > * {
color: orange;
}
</style>
<div>
<p>
Svelte REPLs are svelte.
</p>
</div>