mirror of
https://github.com/picocss/pico.git
synced 2025-05-08 00:25:29 -04:00
:not(thead) td
does not work as expected
`table :not(thead) td` also selects tds in thead https://jsfiddle.net/zh8dx97b/4/ Not that specificity will not be incresed with this fix as * has zero specificity: `:not(thead) > * > td` Maybe `table {` could be dropped completely, since 'thead' and `td` only exist in table?
This commit is contained in:
parent
87bf626400
commit
d74f2dcc62
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ table {
|
|||
}
|
||||
}
|
||||
|
||||
:not(thead) td {
|
||||
:not(thead) > * > td {
|
||||
--font-size: 0.875em;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue