aboutsummaryrefslogtreecommitdiff
path: root/docs/layout/containers.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-08-10 12:47:02 -0700
committerMark Otto <[email protected]>2015-08-10 12:47:02 -0700
commite76d1677cbc3f11f167758d68b93aeaa8af2c23a (patch)
tree76134f1b6f303dafbcebc94418e35f30f749358e /docs/layout/containers.md
parent04b5e3010b0272097fda31a20b4e048c942324e4 (diff)
downloadbootstrap-e76d1677cbc3f11f167758d68b93aeaa8af2c23a.tar.xz
bootstrap-e76d1677cbc3f11f167758d68b93aeaa8af2c23a.zip
move containers.md to overview.md, merge in media queries as new section
Diffstat (limited to 'docs/layout/containers.md')
-rw-r--r--docs/layout/containers.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/layout/containers.md b/docs/layout/containers.md
deleted file mode 100644
index 2ab53446f..000000000
--- a/docs/layout/containers.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-layout: page
-title: Containers
-group: layout
----
-
-Bootstrap requires a containing element to wrap site contents and house our grid system. Choose from the fixed or fluid width variation.
-
-Use `.container` for a responsive fixed width container. This will center content withing the viewport and apply the appropriate `width` for a given device size. **Containers *can* be nested, but be aware that most layouts don't require it.**
-
-{% highlight html %}
-<div class="container">
- ...
-</div>
-{% endhighlight %}
-
-Use `.container-fluid` for a full width container, spanning the entire width of the viewport.
-
-{% highlight html %}
-<div class="container-fluid">
- ...
-</div>
-{% endhighlight %}