Skip to content

Commit

Permalink
Fixes twbs#11623: Reset position to static for grid columns within ta…
Browse files Browse the repository at this point in the history
…bles to unfuck borders in IE9/10 and Firefox
  • Loading branch information
mdo committed Dec 1, 2013
1 parent c6244a9 commit cf40b5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -1719,6 +1719,7 @@ th {
}

table col[class*="col-"] {
position: static;
display: table-column;
float: none;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions less/tables.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit cf40b5d

Please sign in to comment.