|
|
|
|
|
by notpushkin
1281 days ago
|
|
Most of the time, yeah, but there's a corner case (example C from the article): a:hover {
color: hotpink;
:is(aside) & {
color: red;
}
}
Here, you can't just use `aside &` as this starts with a letter and will confuse the parser. Hence, wrapping with `:is()` is requires. |
|
Is it really necessary to support? I'd be cool with just simple nesting logic