Last active
August 29, 2015 14:09
-
-
Save gil00pita/f2a4ed50ffbeb4b03aa0 to your computer and use it in GitHub Desktop.
CSS: Zebra Striping a Table From http://css-tricks.com/snippets/css/css3-zebra-striping-a-table/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tbody tr:nth-child(odd) { | |
background-color: #ccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment