html - Color every second row of the table -
this question has answer here:
- alternate table row color using css? 9 answers
i need color every second row in table. love on attached image ideas how this?
even , odd rules
one way improve readability of large tables color alternating rows. example, table below has light gray background rows , white odd ones. rules extremely simple:
css:
tr:nth-child(even) {background: #ccc} tr:nth-child(odd) {background: #fff}
Comments
Post a Comment