mirror of https://gitlab.com/curben/blog
fix(css): alternating colour rows
- https://www.textfixer.com/tutorials/css-table-alternating-rows.php
This commit is contained in:
parent
91cc8e78e3
commit
0e2799edbf
|
@ -181,7 +181,9 @@ th {
|
|||
}
|
||||
|
||||
table th,
|
||||
th {
|
||||
th,
|
||||
table tr:nth-child(even),
|
||||
tr:nth-child(even) {
|
||||
background: var(--alt-bg-color);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue