mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-30 22:52:24 +01: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:
parent
c6244a94d0
commit
cf40b5db60
1
dist/css/bootstrap.css
vendored
1
dist/css/bootstrap.css
vendored
@ -1719,6 +1719,7 @@ th {
|
||||
}
|
||||
|
||||
table col[class*="col-"] {
|
||||
position: static;
|
||||
display: table-column;
|
||||
float: none;
|
||||
}
|
||||
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user