aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-05-22 21:39:47 -0700
committerMark Otto <[email protected]>2014-05-22 21:39:47 -0700
commit338cff13593a5e10abcab37da9f197fa4eafa3de (patch)
tree695da08ac995e084b0703c8f0e2a7e61132084bd
parent46974490e4041c5ff21006ffd51fc49dbfaeb8d4 (diff)
downloadbootstrap-338cff13593a5e10abcab37da9f197fa4eafa3de.tar.xz
bootstrap-338cff13593a5e10abcab37da9f197fa4eafa3de.zip
clarify
-rw-r--r--docs/_includes/css/tables.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html
index d9a1cd2cf..655545112 100644
--- a/docs/_includes/css/tables.html
+++ b/docs/_includes/css/tables.html
@@ -352,12 +352,10 @@
<div class="bs-callout bs-callout-warning">
<h4>Firefox and fieldsets</h4>
- <p>Firefox has some awkward fieldset styling involving <code>width</code> that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack:</p>
+ <p>Firefox has some awkward fieldset styling involving <code>width</code> that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we <strong>don't</strong> provide in Bootstrap:</p>
{% highlight css %}
@-moz-document url-prefix() {
- fieldset {
- display: table-cell;
- }
+ fieldset { display: table-cell; }
}
{% endhighlight %}
<p>For more information, read <a href="http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685">this Stack Overflow answer</a>.</p>