comments and borders for multiple tbody

This commit is contained in:
Mark Otto
2012-01-11 09:43:13 -08:00
parent a2ebf0c0c1
commit 32c6287259
3 changed files with 13 additions and 1 deletions

View File

@@ -26,6 +26,14 @@ th {
td {
vertical-align: top;
}
// Remove top border from thead by default
thead:first-child tr th,
thead:first-child tr td {
border-top: 0;
}
// Account for multiple tbody instances
tbody + tbody {
border-top: 2px solid #ddd;
}