Commit cf40b5db authored by Mark Otto's avatar Mark Otto

Fixes #11623: Reset position to static for grid columns within tables to...

Fixes #11623: Reset position to static for grid columns within tables to unfuck borders in IE9/10 and Firefox
parent c6244a94
...@@ -1719,6 +1719,7 @@ th { ...@@ -1719,6 +1719,7 @@ th {
} }
table col[class*="col-"] { table col[class*="col-"] {
position: static;
display: table-column; display: table-column;
float: none; float: none;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -133,6 +133,7 @@ th { ...@@ -133,6 +133,7 @@ th {
// Reset default table behavior // Reset default table behavior
table col[class*="col-"] { table col[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
float: none; float: none;
display: table-column; display: table-column;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment