aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-04 21:10:13 -0800
committerMark Otto <[email protected]>2013-12-04 21:10:13 -0800
commit66f9c7d6d5de97965a119f6d5f4ad1704e8f789d (patch)
tree5d280a969d0c93de20c43a67996a2649df29c6d9 /css.html
parentdd28ecd0d5f5c16263649861f53000ad6b813d79 (diff)
downloadbootstrap-66f9c7d6d5de97965a119f6d5f4ad1704e8f789d.tar.xz
bootstrap-66f9c7d6d5de97965a119f6d5f4ad1704e8f789d.zip
Fixes #11436: mention in docs that .container isn't nestable; update docs to mention width, not max-width
Diffstat (limited to 'css.html')
-rw-r--r--css.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/css.html b/css.html
index 41e785702..ee9d3ec71 100644
--- a/css.html
+++ b/css.html
@@ -54,7 +54,8 @@ base_url: "../"
<p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
<h3 id="overview-container">Containers</h3>
- <p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>max-width</code> at various media query breakpoints to match our grid system.</p>
+ <p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>width</code> at various media query breakpoints to match our grid system.</p>
+ <p>Note that, due to <code>padding</code> and fixed widths, containers are not nestable by default.</p>
{% highlight html %}
<div class="container">
...