diff options
| author | Mark Otto <[email protected]> | 2013-12-18 21:41:19 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-18 21:41:19 -0800 |
| commit | edbd1a81e05efb78d2ecf30b4f24263fc25c8620 (patch) | |
| tree | 7f4564f970e851b7f78937831abaf769699fbf7c | |
| parent | 22f9767714a9f80d5d12479725e8875bdd83f341 (diff) | |
| parent | d9586e28638b14960bc2260f310dac76078d5f14 (diff) | |
| download | bootstrap-edbd1a81e05efb78d2ecf30b4f24263fc25c8620.tar.xz bootstrap-edbd1a81e05efb78d2ecf30b4f24263fc25c8620.zip | |
Merge pull request #11932 from dzwillia/th-td-position-static
Added position: static to table th and td when using grid classes for sizing
| -rw-r--r-- | less/tables.less | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/less/tables.less b/less/tables.less index f8c05fecf..c54b0129c 100644 --- a/less/tables.less +++ b/less/tables.less @@ -141,6 +141,7 @@ table { td, th { &[class*="col-"] { + position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-cell; } |
