<tr> and <td> elements are only for tables, duh

This commit is contained in:
Owen Versteeg 2014-02-16 03:09:07 -05:00
parent df7d24f46b
commit e37e6b1a63

View file

@ -3,12 +3,12 @@ table {
border-spacing: 0;
}
.table th, .table td {
th, td {
padding: .5em;
line-height: 1.4em;
text-align: left;
}
tbody tr:nth-child(2n-1) {
tr:nth-child(2n-1) {
background: #ccc; /* Shade every other table row */
}