-
Notifications
You must be signed in to change notification settings - Fork 244
Open
Labels
enhancementNew feature or requestNew feature or request
Description
There are currently many selector tests that fail.
- :nth-col() feat: add
:nth-col()and:nth-last-col()selectors #302 - :nth-last-col() feat: add
:nth-col()and:nth-last-col()selectors #302 - :nth-child(An+B [of S]?) Support :nth-child(An+B of S) selector #392
- :nth-last-child(An+B [of S]?) Support :nth-child(An+B of S) selector #392
- More…
e.g.
https://www.w3.org/TR/selectors-4/#the-nth-col-pseudo
:nth-col(odd) {
width: 10px;
}
:nth-col(2n+1) {
width: 20px;
}
:nth-last-col(odd) {
width: 30px;
}
:nth-last-col(2n+1) {
width: 40px;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request