From 414997baa83858b43e9f45af90097f93ed2d6797 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 6 Feb 2016 10:51:59 -0800 Subject: flip things around again, no more base class, try out some new stuff to keep responsive flex grid working --- 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 c9bcf8b93..9e831115b 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 .col-xs-4
-
.col .col-xs-4
-
.col .col-xs-4
+
.col-xs-4
+
.col-xs-4
+
.col-xs-4
-
.col .col-sm-4
-
.col .col-sm-4
-
.col .col-sm-4
+
.col-sm-4
+
.col-sm-4
+
.col-sm-4
-
.col .col-md-4
-
.col .col-md-4
-
.col .col-md-4
+
.col-md-4
+
.col-md-4
+
.col-md-4
-
.col .col-lg-4
-
.col .col-lg-4
-
.col .col-lg-4
+
.col-lg-4
+
.col-lg-4
+
.col-lg-4
-
.col .col-xl-4
-
.col .col-xl-4
-
.col .col-xl-4
+
.col-xl-4
+
.col-xl-4
+
.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 .col-md-4
-
.col .col-md-4
-
.col .col-md-4
+
.col-md-4
+
.col-md-4
+
.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 .col-md-3
-
.col .col-md-6
-
.col .col-md-3
+
.col-md-3
+
.col-md-6
+
.col-md-3

Two columns

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

-
.col .col-md-8
-
.col .col-md-4
+
.col-md-8
+
.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 .col-md-6
-
.col .col-md-6
+
.col-md-6
+
.col-md-6
-
.col .col-md-4
+
.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 .col-xs-12 .col-md-8
-
.col .col-xs-6 .col-md-4
+
.col-xs-12 .col-md-8
+
.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-md-4
+
.col-xs-6 .col-md-4
+
.col-xs-6 .col-md-4
-
.col .col-xs-6
-
.col .col-xs-6
+
.col-xs-6
+
.col-xs-6

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

Mixed: mobile, tablet, and desktop

-
.col .col-xs-12 .col-sm-6 .col-lg-8
-
.col .col-xs-6 .col-lg-4
+
.col-xs-12 .col-sm-6 .col-lg-8
+
.col-xs-6 .col-lg-4
-
.col .col-xs-6 .col-sm-4
-
.col .col-xs-6 .col-sm-4
-
.col .col-xs-6 .col-sm-4
+
.col-xs-6 .col-sm-4
+
.col-xs-6 .col-sm-4
+
.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 .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
+
.col-xs-6 .col-sm-3
+
.col-xs-6 .col-sm-3

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

Offset, push, and pull resets

Reset offsets, pushes, and pulls at specific breakpoints.

-
.col .col-sm-5 .col-md-6
-
.col .col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0
+
.col-sm-5 .col-md-6
+
.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-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
+
.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
-- cgit v1.2.3