|
|
|
|
|
by myfonj
1043 days ago
|
|
`:not(:first-child)` has specificity 0.1.0 that is some orders higher than 0.0.0 of `* + *` (since `:first-child` is a pseudoclass), so you'd have to adjust anything that you'd need to override it with. Strict equivalent of * + *
would be :where(:not(:first-child))
|
|