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/cascade-false-pseudo-element/expected.css

13 lines
174 B

span[svelte-xyz]::after {
content: 'i am a pseudo-element';
}
span[svelte-xyz]:first-child {
color: red;
}
span[svelte-xyz]:last-child::after {
color: blue;
}