From fcb7c9da6f5082e1306fab096c16020b4227c967 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 14 May 2013 23:24:29 -0700 Subject: [PATCH] Fixes #7878: .col-span-* mentions to .col-lg-* --- docs/css.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/css.html b/docs/css.html index 2640e1688d..f0ac78118a 100644 --- a/docs/css.html +++ b/docs/css.html @@ -66,7 +66,7 @@ lead: "Fundamental HTML elements styled and enhanced with extensible classes."

Bootstrap includes a responsive, percent-based grid system that appropriately scales up to 12 columns as the device or viewport size increases—in other words, it's mobile first. It includes predefined classes for this, as well as powerful mixins for generating semantic layouts.

Grid example

-

On mobile devices, the grid starts out stacked. Above 768px, it becomes horizontal as media queries kick in to apply floats and widths. To create a basic grid layout, wrap a series of .col-span-* elements within a .row. As this is a 12-column grid, each .col-span-* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent), even at mobile resolutions.

+

On mobile devices, the grid starts out stacked. Above 768px, it becomes horizontal as media queries kick in to apply floats and widths. To create a basic grid layout, wrap a series of .col-lg-* elements within a .row. As this is a 12-column grid, each .col-lg-* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent), even at mobile resolutions.

1
@@ -149,7 +149,7 @@ lead: "Fundamental HTML elements styled and enhanced with extensible classes."

Nesting columns

-

To nest your content with the default grid, add a new .row and set of .col-span-* columns within an existing .col-span-* column. Nested rows should include a set of columns that add up to 12.

+

To nest your content with the default grid, add a new .row and set of .col-lg-* columns within an existing .col-lg-* column. Nested rows should include a set of columns that add up to 12.

Level 1: 9 columns @@ -1621,7 +1621,7 @@ For example, <section> should be wrapped as inline. {% endhighlight %}

Control sizing

-

Use relative sizing classes like .input-large or match your inputs to the grid column sizes using .col-span-* classes.

+

Use relative sizing classes like .input-large or match your inputs to the grid column sizes using .col-lg-* classes.

Relative sizing

Create larger or smaller form controls that match button sizes.

-- 2.47.2