You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Cannot use :nth-child(even/odd of selector) where selector is anything other than a tag (.classes, #id, :not(), etc)
To Reproduce
Having something as simple as:
.test:nth-child(even of .test2) { background-color: white; }
My particular case has me doing something like:
.class:nth-child(even of .class:not(.class2)) { styles; }
Which works fine in the browser, but I can't actually use it since we use this to bundle/minify all our css.
Expected behavior
Should not result in errors.
Screenshots
The text was updated successfully, but these errors were encountered:
Describe the bug
Cannot use :nth-child(even/odd of selector) where selector is anything other than a tag (.classes, #id, :not(), etc)
To Reproduce
Having something as simple as:
.test:nth-child(even of .test2) { background-color: white; }
My particular case has me doing something like:
.class:nth-child(even of .class:not(.class2)) { styles; }
Which works fine in the browser, but I can't actually use it since we use this to bundle/minify all our css.
Expected behavior
Should not result in errors.
Screenshots
The text was updated successfully, but these errors were encountered: