From: Mark Otto Date: Fri, 23 May 2014 04:39:47 +0000 (-0700) Subject: clarify X-Git-Tag: v3.2.0~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=338cff13593a5e10abcab37da9f197fa4eafa3de;p=thirdparty%2Fbootstrap.git clarify --- diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html index d9a1cd2cfa..6555451128 100644 --- a/docs/_includes/css/tables.html +++ b/docs/_includes/css/tables.html @@ -352,12 +352,10 @@

Firefox and fieldsets

-

Firefox has some awkward fieldset styling involving width that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack:

+

Firefox has some awkward fieldset styling involving width that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we don't provide in Bootstrap:

{% highlight css %} @-moz-document url-prefix() { - fieldset { - display: table-cell; - } + fieldset { display: table-cell; } } {% endhighlight %}

For more information, read this Stack Overflow answer.