2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Fixes #11623: Reset position to static for grid columns within tables to unfuck borders in IE9/10 and Firefox

This commit is contained in:
Mark Otto
2013-11-30 23:04:55 -08:00
parent c6244a94d0
commit cf40b5db60
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -1719,6 +1719,7 @@ th {
}
table col[class*="col-"] {
position: static;
display: table-column;
float: none;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
@@ -133,6 +133,7 @@ th {
// Reset default table behavior
table col[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
float: none;
display: table-column;
}