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
{{ message }}
This repository was archived by the owner on Aug 29, 2024. It is now read-only.
- Alter the CSS for tables to work with different ways of wring them.
That makes these two selectors equivalent:
table > tr:first-child
table > thead
table > :not(thead + tbody) > tr:first-child
That also makes these two selectors equivalent:
table > tr:nth-child(even)
table > thead + tbody > tr:nth-child(odd)
table > :not(thead + tbody) > tr:nth-child(even)
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from #350)
0 commit comments