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/preserve-specificity/input.svelte

24 lines
342 B

<!-- svelte-ignore a11y-missing-attribute -->
<a>
<b>
<c>
<span>
Big red Comic Sans
</span>
<span class='foo'>
Big red Comic Sans
</span>
</c>
</b>
</a>
<style>
a b c span {
color: red;
font-size: 2em;
font-family: 'Comic Sans MS';
}
.foo {
color: green;
}
</style>