diff --git a/css.html b/css.html index 9a5e56cf90..12032c497a 100644 --- a/css.html +++ b/css.html @@ -79,10 +79,16 @@ base_url: "../"
.row
and .col-xs-4
are available for quickly making grid layouts. LESS mixins can also be used for more semantic layouts.padding
. That padding is offset in rows for the first and last column via negative margin on .row
s..col-xs-4
.Look to the examples for applying these principles to your code.
+Folks looking to create fully fluid layouts (meaning your site stretches the entire width of the viewport) must wrap their grid content in a containing element with padding: 0 15px;
to offset the margin: 0 -15px;
used on .row
s.
We use the following media queries in our LESS files to create the key breakpoints in our grid system.
{% highlight css %}