From d84f726da4f55434de853202961310d153f35739 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 17:02:29 -0800 Subject: [PATCH] IE11 & current Firefox are still affected. Refs #11623 --- less/tables.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/tables.less b/less/tables.less index ba24498a39..3c801aedbb 100644 --- a/less/tables.less +++ b/less/tables.less @@ -133,7 +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) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-column; } @@ -141,7 +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) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-cell; }