Skip to content

Instantly share code, notes, and snippets.

@zirosas
Created August 17, 2012 04:28
Show Gist options
  • Save zirosas/3375916 to your computer and use it in GitHub Desktop.
Save zirosas/3375916 to your computer and use it in GitHub Desktop.
Table CSS Zebra striping
table {
width: 100%;
border-collapse: collapse;
table-layout:fixed;
font-size: 10px;
}
/* Zebra striping */
tr:nth-of-type(odd) {
background: #eee;
}
th {
background: #ed2d2c;
color: white;
font-weight: bold;
padding: 6px;
border: 1px solid #ccc;
text-align: center;
width: 14%;
height: 35px;
}
td {
padding: 6px;
border: 1px solid #ccc;
text-align: left;
width: 14%;
height: 70px;
vertical-align: top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment