From e149a6035ef5689040d619ac7301f802b1dc8167 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 6 Feb 2016 00:47:33 -0800 Subject: Update base class for grid cols in all examples --- docs/examples/grid/index.html | 94 +++++++++++++++++++++---------------------- 1 file changed, 47 insertions(+), 47 deletions(-) (limited to 'docs/examples/grid') diff --git a/docs/examples/grid/index.html b/docs/examples/grid/index.html index 74b5852f5..c9bcf8b93 100644 --- a/docs/examples/grid/index.html +++ b/docs/examples/grid/index.html @@ -30,56 +30,56 @@

There are five tiers to the Bootstrap grid system, one for each range of devices we support. Each tier starts at a minimum viewport size and automatically applies to the larger devices unless overridden.

-
.col-xs-4
-
.col-xs-4
-
.col-xs-4
+
.col .col-xs-4
+
.col .col-xs-4
+
.col .col-xs-4
-
.col-sm-4
-
.col-sm-4
-
.col-sm-4
+
.col .col-sm-4
+
.col .col-sm-4
+
.col .col-sm-4
-
.col-md-4
-
.col-md-4
-
.col-md-4
+
.col .col-md-4
+
.col .col-md-4
+
.col .col-md-4
-
.col-lg-4
-
.col-lg-4
-
.col-lg-4
+
.col .col-lg-4
+
.col .col-lg-4
+
.col .col-lg-4
-
.col-xl-4
-
.col-xl-4
-
.col-xl-4
+
.col .col-xl-4
+
.col .col-xl-4
+
.col .col-xl-4

Three equal columns

Get three equal-width columns starting at desktops and scaling to large desktops. On mobile devices, tablets and below, the columns will automatically stack.

-
.col-md-4
-
.col-md-4
-
.col-md-4
+
.col .col-md-4
+
.col .col-md-4
+
.col .col-md-4

Three unequal columns

Get three columns starting at desktops and scaling to large desktops of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.

-
.col-md-3
-
.col-md-6
-
.col-md-3
+
.col .col-md-3
+
.col .col-md-6
+
.col .col-md-3

Two columns

Get two columns starting at desktops and scaling to large desktops.

-
.col-md-8
-
.col-md-4
+
.col .col-md-8
+
.col .col-md-4

Full width, single column

@@ -91,14 +91,14 @@

Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns starting at desktops and scaling to large desktops, with another two (equal widths) within the larger column.

At mobile device sizes, tablets and down, these columns and their nested columns will stack.

-
+
.col-md-8
-
.col-md-6
-
.col-md-6
+
.col .col-md-6
+
.col .col-md-6
-
.col-md-4
+
.col .col-md-4

@@ -107,17 +107,17 @@

The Bootstrap v4 grid system has five tiers of classes: xs (extra small), sm (small), md (medium), lg (large), and xl (extra large). You can use nearly any combination of these classes to create more dynamic and flexible layouts.

Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.

-
.col-xs-12 .col-md-8
-
.col-xs-6 .col-md-4
+
.col .col-xs-12 .col-md-8
+
.col .col-xs-6 .col-md-4
-
.col-xs-6 .col-md-4
-
.col-xs-6 .col-md-4
-
.col-xs-6 .col-md-4
+
.col .col-xs-6 .col-md-4
+
.col .col-xs-6 .col-md-4
+
.col .col-xs-6 .col-md-4
-
.col-xs-6
-
.col-xs-6
+
.col .col-xs-6
+
.col .col-xs-6

@@ -125,13 +125,13 @@

Mixed: mobile, tablet, and desktop

-
.col-xs-12 .col-sm-6 .col-lg-8
-
.col-xs-6 .col-lg-4
+
.col .col-xs-12 .col-sm-6 .col-lg-8
+
.col .col-xs-6 .col-lg-4
-
.col-xs-6 .col-sm-4
-
.col-xs-6 .col-sm-4
-
.col-xs-6 .col-sm-4
+
.col .col-xs-6 .col-sm-4
+
.col .col-xs-6 .col-sm-4
+
.col .col-xs-6 .col-sm-4

@@ -139,18 +139,18 @@

Column clearing

Clear floats at specific breakpoints to prevent awkward wrapping with uneven content.

-
+
.col-xs-6 .col-sm-3
Resize your viewport or check it out on your phone for an example.
-
.col-xs-6 .col-sm-3
+
.col .col-xs-6 .col-sm-3
-
.col-xs-6 .col-sm-3
-
.col-xs-6 .col-sm-3
+
.col .col-xs-6 .col-sm-3
+
.col .col-xs-6 .col-sm-3

@@ -158,12 +158,12 @@

Offset, push, and pull resets

Reset offsets, pushes, and pulls at specific breakpoints.

-
.col-sm-5 .col-md-6
-
.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0
+
.col .col-sm-5 .col-md-6
+
.col .col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0
-
.col-sm-6 .col-md-5 .col-lg-6
-
.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0
+
.col .col-sm-6 .col-md-5 .col-lg-6
+
.col .col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0
-- cgit v1.2.3