resolve problem with nested tables having double borders

This commit is contained in:
Mark Otto
2011-10-07 23:53:32 -07:00
parent d74dee5e0f
commit 9991f3faa1
5 changed files with 59 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ a {
.row {
.clearfix();
margin-left: -1 * @gridGutterWidth;
margin-left: -@gridGutterWidth;
}
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)

View File

@@ -34,9 +34,12 @@ table {
td + td {
border-left: 1px solid #ddd;
}
tr + tr td {
tr td {
border-top: 1px solid #ddd;
}
tr:first-child td {
border-top: 0;
}
tbody tr:first-child td:first-child {
.border-radius(4px 0 0 0);
}