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;
}