5 lead: "Global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system."
10 <!-- Global Bootstrap settings
11 ================================================== -->
12 <div class="bs-docs-section">
13 <div class="page-header">
14 <h1 id="overview">Overview</h1>
16 <p class="lead">Get the lowdown on the key pieces of Bootstrap's infrastructure, including our approach to better, faster, stronger web development.</p>
18 <h3 id="overview-doctype">HTML5 doctype</h3>
19 <p>Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p>
27 <h3 id="overview-mobile">Mobile first</h3>
28 <p>With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, <strong>Bootstrap is mobile first</strong>. Mobile first styles can be found throughout the entire library instead of in separate files.</p>
29 <p>To ensure proper rendering and touch zooming, <strong>add the viewport meta tag</strong> to your <code><head></code>.</p>
31 <meta name="viewport" content="width=device-width, initial-scale=1.0">
33 <p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall we don't recommend this on every site, so use caution!</p>
35 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
38 <h3 id="overview-responsive-images">Responsive images</h3>
39 <p>Images in Bootstrap 3 can be made responsive-friendly via the addition of the <code>.img-responsive</code> class. This applies <code>max-width: 100%;</code> and <code>height: auto;</code> to the image so that it scales nicely to the parent element.</p>
41 <img src="..." class="img-responsive" alt="Responsive image">
44 <h3 id="overview-type-links">Typography and links</h3>
45 <p>Bootstrap sets basic global display, typography, and link styles. Specifically, we:</p>
47 <li>Set <code>background-color: #fff;</code> on the <code>body</code></li>
48 <li>Use the <code>@font-family-base</code>, <code>@font-size-base</code>, and <code>@line-height-base</code> attributes as our typographic base</li>
49 <li>Set the global link color via <code>@link-color</code> and apply link underlines only on <code>:hover</code></li>
51 <p>These styles can be found within <code>scaffolding.less</code>.</p>
53 <h3 id="overview-normalize">Normalize</h3>
54 <p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
56 <h3 id="overview-container">Containers</h3>
57 <p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>width</code> at various media query breakpoints to match our grid system.</p>
58 <p>Note that, due to <code>padding</code> and fixed widths, containers are not nestable by default.</p>
60 <div class="container">
69 ================================================== -->
70 <div class="bs-docs-section">
71 <div class="page-header">
72 <h1 id="grid">Grid system</h1>
74 <p class="lead">Bootstrap includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes <a href="#grid-example-basic">predefined classes</a> for easy layout options, as well as powerful <a href="#grid-less">mixins for generating more semantic layouts</a>.</p>
76 <h3 id="grid-intro">Introduction</h3>
77 <p>Grid systems are used for creating page layouts through a series of rows and columns that house your content. Here's how the Bootstrap grid system works:</p>
79 <li>Rows must be placed within a <code>.container</code> for proper alignment and padding.</li>
80 <li>Use rows to create horizontal groups of columns.</li>
81 <li>Content should be placed within columns, and only columns may be immediate children of rows.</li>
82 <li>Predefined grid classes like <code>.row</code> and <code>.col-xs-4</code> are available for quickly making grid layouts. LESS mixins can also be used for more semantic layouts.</li>
83 <li>Columns create gutters (gaps between column content) via <code>padding</code>. That padding is offset in rows for the first and last column via negative margin on <code>.row</code>s.</li>
84 <li>Grid columns are created by specifying the number of twelve available columns you wish to span. For example, three equal columns would use three <code>.col-xs-4</code>.</li>
86 <p>Look to the examples for applying these principles to your code.</p>
88 <div class="bs-callout bs-callout-info">
89 <h4>Grids and full-width layouts</h4>
90 <p>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 <code>padding: 0 15px;</code> to offset the <code>margin: 0 -15px;</code> used on <code>.row</code>s.</p>
93 <h3 id="grid-media-queries">Media queries</h3>
94 <p>We use the following media queries in our LESS files to create the key breakpoints in our grid system.</p>
96 /* Extra small devices (phones, less than 768px) */
97 /* No media query since this is the default in Bootstrap */
99 /* Small devices (tablets, 768px and up) */
100 @media (min-width: @screen-sm-min) { ... }
102 /* Medium devices (desktops, 992px and up) */
103 @media (min-width: @screen-md-min) { ... }
105 /* Large devices (large desktops, 1200px and up) */
106 @media (min-width: @screen-lg-min) { ... }
108 <p>We occasionally expand on these media queries to include a <code>max-width</code> to limit CSS to a narrower set of devices.</p>
110 @media (max-width: @screen-xs-max) { ... }
111 @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { ... }
112 @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { ... }
113 @media (min-width: @screen-lg-min) { ... }
116 <h3 id="grid-options">Grid options</h3>
117 <p>See how aspects of the Bootstrap grid system work across multiple devices with a handy table.</p>
118 <div class="table-responsive">
119 <table class="table table-bordered table-striped">
125 <small>Phones (<768px)</small>
129 <small>Tablets (≥768px)</small>
133 <small>Desktops (≥992px)</small>
137 <small>Desktops (≥1200px)</small>
143 <th>Grid behavior</th>
144 <td>Horizontal at all times</td>
145 <td colspan="3">Collapsed to start, horizontal above breakpoints</td>
148 <th>Max container width</th>
155 <th>Class prefix</th>
156 <td><code>.col-xs-</code></td>
157 <td><code>.col-sm-</code></td>
158 <td><code>.col-md-</code></td>
159 <td><code>.col-lg-</code></td>
162 <th># of columns</th>
163 <td colspan="4">12</td>
166 <th>Max column width</th>
167 <td class="text-muted">Auto</td>
173 <th>Gutter width</th>
174 <td colspan="4">30px (15px on each side of a column)</td>
178 <td colspan="4">Yes</td>
182 <td colspan="4">Yes</td>
185 <th>Column ordering</th>
186 <td colspan="4">Yes</td>
191 <p>Grid classes apply to devices with screen widths greater than or equal to the breakpoint sizes, and override grid classes targeted at smaller devices. Therefore, applying any <code>.col-md-</code> class to an element will not only affect its styling on medium devices but also on large devices if a <code>.col-lg-</code> class is not present.</p>
193 <h3 id="grid-example-basic">Example: Stacked-to-horizontal</h3>
194 <p>Using a single set of <code>.col-md-*</code> grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices. Place grid columns in any <code>.row</code>.</p>
195 <div class="bs-docs-grid">
196 <div class="row show-grid">
197 <div class="col-md-1">.col-md-1</div>
198 <div class="col-md-1">.col-md-1</div>
199 <div class="col-md-1">.col-md-1</div>
200 <div class="col-md-1">.col-md-1</div>
201 <div class="col-md-1">.col-md-1</div>
202 <div class="col-md-1">.col-md-1</div>
203 <div class="col-md-1">.col-md-1</div>
204 <div class="col-md-1">.col-md-1</div>
205 <div class="col-md-1">.col-md-1</div>
206 <div class="col-md-1">.col-md-1</div>
207 <div class="col-md-1">.col-md-1</div>
208 <div class="col-md-1">.col-md-1</div>
210 <div class="row show-grid">
211 <div class="col-md-8">.col-md-8</div>
212 <div class="col-md-4">.col-md-4</div>
214 <div class="row show-grid">
215 <div class="col-md-4">.col-md-4</div>
216 <div class="col-md-4">.col-md-4</div>
217 <div class="col-md-4">.col-md-4</div>
219 <div class="row show-grid">
220 <div class="col-md-6">.col-md-6</div>
221 <div class="col-md-6">.col-md-6</div>
226 <div class="col-md-1">.col-md-1</div>
227 <div class="col-md-1">.col-md-1</div>
228 <div class="col-md-1">.col-md-1</div>
229 <div class="col-md-1">.col-md-1</div>
230 <div class="col-md-1">.col-md-1</div>
231 <div class="col-md-1">.col-md-1</div>
232 <div class="col-md-1">.col-md-1</div>
233 <div class="col-md-1">.col-md-1</div>
234 <div class="col-md-1">.col-md-1</div>
235 <div class="col-md-1">.col-md-1</div>
236 <div class="col-md-1">.col-md-1</div>
237 <div class="col-md-1">.col-md-1</div>
240 <div class="col-md-8">.col-md-8</div>
241 <div class="col-md-4">.col-md-4</div>
244 <div class="col-md-4">.col-md-4</div>
245 <div class="col-md-4">.col-md-4</div>
246 <div class="col-md-4">.col-md-4</div>
249 <div class="col-md-6">.col-md-6</div>
250 <div class="col-md-6">.col-md-6</div>
254 <h3 id="grid-example-mixed">Example: Mobile and desktop</h3>
255 <p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
256 <div class="bs-docs-grid">
257 <div class="row show-grid">
258 <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
259 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
261 <div class="row show-grid">
262 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
263 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
264 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
266 <div class="row show-grid">
267 <div class="col-xs-6">.col-xs-6</div>
268 <div class="col-xs-6">.col-xs-6</div>
272 <!-- Stack the columns on mobile by making one full-width and the other half-width -->
274 <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
275 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
278 <!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
280 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
281 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
282 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
285 <!-- Columns are always 50% wide, on mobile and desktop -->
287 <div class="col-xs-6">.col-xs-6</div>
288 <div class="col-xs-6">.col-xs-6</div>
292 <h3 id="grid-example-mixed-complete">Example: Mobile, tablet, desktops</h3>
293 <p>Build on the previous example by creating even more dynamic and powerful layouts with tablet <code>.col-sm-*</code> classes.</p>
294 <div class="bs-docs-grid">
295 <div class="row show-grid">
296 <div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
297 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
299 <div class="row show-grid">
300 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
301 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
302 <!-- Optional: clear the XS cols if their content doesn't match in height -->
303 <div class="clearfix visible-xs"></div>
304 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
309 <div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
310 <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
313 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
314 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
315 <!-- Optional: clear the XS cols if their content doesn't match in height -->
316 <div class="clearfix visible-xs"></div>
317 <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
321 <h3 id="grid-responsive-resets">Responsive column resets</h3>
322 <p>With the four tiers of grids available you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a <code>.clearfix</code> and our <a href="#responsive-utilities">responsive utility classes</a>.</p>
323 <div class="bs-docs-grid">
324 <div class="row show-grid">
325 <div class="col-xs-6 col-sm-3">
328 Resize your viewport or check it out on your phone for an example.
330 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
332 <!-- Add the extra clearfix for only the required viewport -->
333 <div class="clearfix visible-xs"></div>
335 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
336 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
341 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
342 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
344 <!-- Add the extra clearfix for only the required viewport -->
345 <div class="clearfix visible-xs"></div>
347 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
348 <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
351 <p>In addition to column clearing at responsive breakpoints, you may need to <strong>reset offsets, pushes, or pulls</strong>. Those resets are available for medium and large grid tiers only, since they start only at the (second) small grid tier. See this in action in <a href="../examples/grid/">the grid example</a>.</p>
354 <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
355 <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div>
359 <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
360 <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div>
365 <h3 id="grid-offsetting">Offsetting columns</h3>
366 <p>Move columns to the right using <code>.col-md-offset-*</code> classes. These classes increase the left margin of a column by <code>*</code> columns. For example, <code>.col-md-offset-4</code> moves <code>.col-md-4</code> over four columns.</p>
367 <div class="bs-docs-grid">
368 <div class="row show-grid">
369 <div class="col-md-4">.col-md-4</div>
370 <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
372 <div class="row show-grid">
373 <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
374 <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
376 <div class="row show-grid">
377 <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
382 <div class="col-md-4">.col-md-4</div>
383 <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
386 <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
387 <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
390 <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
395 <h3 id="grid-nesting">Nesting columns</h3>
396 <p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-md-*</code> columns within an existing <code>.col-md-*</code> column. Nested rows should include a set of columns that add up to 12.</p>
397 <div class="row show-grid">
398 <div class="col-md-9">
400 <div class="row show-grid">
401 <div class="col-md-6">
404 <div class="col-md-6">
412 <div class="col-md-9">
415 <div class="col-md-6">
418 <div class="col-md-6">
426 <h3 id="grid-column-ordering">Column ordering</h3>
427 <p>Easily change the order of our built-in grid columns with <code>.col-md-push-*</code> and <code>.col-md-pull-*</code> modifier classes.</p>
428 <div class="row show-grid">
429 <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
430 <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
435 <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
436 <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
440 <h3 id="grid-less">LESS mixins and variables</h3>
441 <p>In addition to <a href="#grid-example-basic">prebuilt grid classes</a> for fast layouts, Bootstrap includes LESS variables and mixins for quickly generating your own simple, semantic layouts.</p>
444 <p>Variables determine the number of columns, the gutter width, and the media query point at which to begin floating columns. We use these to generate the predefined grid classes documented above, as well as for the custom mixins listed below.</p>
447 @grid-gutter-width: 30px;
448 @grid-float-breakpoint: 768px;
452 <p>Mixins are used in conjunction with the grid variables to generate semantic CSS for individual grid columns.</p>
454 // Creates a wrapper for a series of columns
455 .make-row(@gutter: @grid-gutter-width) {
456 // Then clear the floated columns
459 @media (min-width: @screen-sm-min) {
460 margin-left: (@gutter / -2);
461 margin-right: (@gutter / -2);
464 // Negative margin nested rows out to align the content of columns
466 margin-left: (@gutter / -2);
467 margin-right: (@gutter / -2);
471 // Generate the extra small columns
472 .make-xs-column(@columns; @gutter: @grid-gutter-width) {
474 // Prevent columns from collapsing when empty
476 // Inner gutter via padding
477 padding-left: (@gutter / 2);
478 padding-right: (@gutter / 2);
480 // Calculate width based on number of columns available
481 @media (min-width: @grid-float-breakpoint) {
483 width: percentage((@columns / @grid-columns));
487 // Generate the small columns
488 .make-sm-column(@columns; @gutter: @grid-gutter-width) {
490 // Prevent columns from collapsing when empty
492 // Inner gutter via padding
493 padding-left: (@gutter / 2);
494 padding-right: (@gutter / 2);
496 // Calculate width based on number of columns available
497 @media (min-width: @screen-sm-min) {
499 width: percentage((@columns / @grid-columns));
503 // Generate the small column offsets
504 .make-sm-column-offset(@columns) {
505 @media (min-width: @screen-sm-min) {
506 margin-left: percentage((@columns / @grid-columns));
509 .make-sm-column-push(@columns) {
510 @media (min-width: @screen-sm-min) {
511 left: percentage((@columns / @grid-columns));
514 .make-sm-column-pull(@columns) {
515 @media (min-width: @screen-sm-min) {
516 right: percentage((@columns / @grid-columns));
520 // Generate the medium columns
521 .make-md-column(@columns; @gutter: @grid-gutter-width) {
523 // Prevent columns from collapsing when empty
525 // Inner gutter via padding
526 padding-left: (@gutter / 2);
527 padding-right: (@gutter / 2);
529 // Calculate width based on number of columns available
530 @media (min-width: @screen-md-min) {
532 width: percentage((@columns / @grid-columns));
536 // Generate the medium column offsets
537 .make-md-column-offset(@columns) {
538 @media (min-width: @screen-md-min) {
539 margin-left: percentage((@columns / @grid-columns));
542 .make-md-column-push(@columns) {
543 @media (min-width: @screen-md-min) {
544 left: percentage((@columns / @grid-columns));
547 .make-md-column-pull(@columns) {
548 @media (min-width: @screen-md-min) {
549 right: percentage((@columns / @grid-columns));
553 // Generate the large columns
554 .make-lg-column(@columns; @gutter: @grid-gutter-width) {
556 // Prevent columns from collapsing when empty
558 // Inner gutter via padding
559 padding-left: (@gutter / 2);
560 padding-right: (@gutter / 2);
562 // Calculate width based on number of columns available
563 @media (min-width: @screen-lg-min) {
565 width: percentage((@columns / @grid-columns));
569 // Generate the large column offsets
570 .make-lg-column-offset(@columns) {
571 @media (min-width: @screen-lg-min) {
572 margin-left: percentage((@columns / @grid-columns));
575 .make-lg-column-push(@columns) {
576 @media (min-width: @screen-lg-min) {
577 left: percentage((@columns / @grid-columns));
580 .make-lg-column-pull(@columns) {
581 @media (min-width: @screen-lg-min) {
582 right: percentage((@columns / @grid-columns));
587 <h4>Example usage</h4>
588 <p>You can modify the variables to your own custom values, or just use the mixins with their default values. Here's an example of using the default settings to create a two-column layout with a gap between.</p>
598 .make-lg-column-offset(1);
602 <div class="wrapper">
603 <div class="content-main">...</div>
604 <div class="content-secondary">...</div>
614 ================================================== -->
615 <div class="bs-docs-section">
616 <div class="page-header">
617 <h1 id="type">Typography</h1>
621 <h2 id="type-headings">Headings</h2>
622 <p>All HTML headings, <code><h1></code> through <code><h6></code>, are available. <code>.h1</code> through <code>.h6</code> classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline.</p>
623 <div class="bs-example bs-example-type">
624 <table class="table">
627 <td><h1>h1. Bootstrap heading</h1></td>
628 <td class="info">Semibold 36px</td>
631 <td><h2>h2. Bootstrap heading</h2></td>
632 <td class="info">Semibold 30px</td>
635 <td><h3>h3. Bootstrap heading</h3></td>
636 <td class="info">Semibold 24px</td>
639 <td><h4>h4. Bootstrap heading</h4></td>
640 <td class="info">Semibold 18px</td>
643 <td><h5>h5. Bootstrap heading</h5></td>
644 <td class="info">Semibold 14px</td>
647 <td><h6>h6. Bootstrap heading</h6></td>
648 <td class="info">Semibold 12px</td>
654 <h1>h1. Bootstrap heading</h1>
655 <h2>h2. Bootstrap heading</h2>
656 <h3>h3. Bootstrap heading</h3>
657 <h4>h4. Bootstrap heading</h4>
658 <h5>h5. Bootstrap heading</h5>
659 <h6>h6. Bootstrap heading</h6>
662 <p>Create lighter, secondary text in any heading with a generic <code><small></code> tag or the <code>.small</code> class.</p>
663 <div class="bs-example bs-example-type">
664 <table class="table">
667 <td><h1>h1. Bootstrap heading <small>Secondary text</small></h1></td>
670 <td><h2>h2. Bootstrap heading <small>Secondary text</small></h2></td>
673 <td><h3>h3. Bootstrap heading <small>Secondary text</small></h3></td>
676 <td><h4>h4. Bootstrap heading <small>Secondary text</small></h4></td>
679 <td><h5>h5. Bootstrap heading <small>Secondary text</small></h5></td>
682 <td><h6>h6. Bootstrap heading <small>Secondary text</small></h6></td>
688 <h1>h1. Bootstrap heading <small>Secondary text</small></h1>
689 <h2>h2. Bootstrap heading <small>Secondary text</small></h2>
690 <h3>h3. Bootstrap heading <small>Secondary text</small></h3>
691 <h4>h4. Bootstrap heading <small>Secondary text</small></h4>
692 <h5>h5. Bootstrap heading <small>Secondary text</small></h5>
693 <h6>h6. Bootstrap heading <small>Secondary text</small></h6>
698 <h2 id="type-body-copy">Body copy</h2>
699 <p>Bootstrap's global default <code>font-size</code> is <strong>14px</strong>, with a <code>line-height</code> of <strong>1.428</strong>. This is applied to the <code><body></code> and all paragraphs. In addition, <code><p></code> (paragraphs) receive a bottom margin of half their computed line-height (10px by default).</p>
700 <div class="bs-example">
701 <p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
702 <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
703 <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
709 <!-- Body copy .lead -->
710 <h3>Lead body copy</h3>
711 <p>Make a paragraph stand out by adding <code>.lead</code>.</p>
712 <div class="bs-example">
713 <p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
716 <p class="lead">...</p>
720 <h3>Built with Less</h3>
721 <p>The typographic scale is based on two LESS variables in <strong>variables.less</strong>: <code>@font-size-base</code> and <code>@line-height-base</code>. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.</p>
725 <h2 id="type-emphasis">Emphasis</h2>
726 <p>Make use of HTML's default emphasis tags with lightweight styles.</p>
729 <p>For de-emphasizing inline or blocks of text, use the <code><small></code> tag to set text at 85% the size of the parent. Heading elements receive their own <code>font-size</code> for nested <code><small></code> elements.</p>
730 <p>You may alternatively use an inline element with <code>.small</code> in place of any <code><small></code></p>
731 <div class="bs-example">
732 <p><small>This line of text is meant to be treated as fine print.</small></p>
735 <small>This line of text is meant to be treated as fine print.</small>
740 <p>For emphasizing a snippet of text with a heavier font-weight.</p>
741 <div class="bs-example">
742 <p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
745 <strong>rendered as bold text</strong>
749 <p>For emphasizing a snippet of text with italics.</p>
750 <div class="bs-example">
751 <p>The following snippet of text is <em>rendered as italicized text</em>.</p>
754 <em>rendered as italicized text</em>
757 <div class="bs-callout bs-callout-info">
758 <h4>Alternate elements</h4>
759 <p>Feel free to use <code><b></code> and <code><i></code> in HTML5. <code><b></code> is meant to highlight words or phrases without conveying additional importance while <code><i></code> is mostly for voice, technical terms, etc.</p>
762 <h3>Alignment classes</h3>
763 <p>Easily realign text to components with text alignment classes.</p>
764 <div class="bs-example">
765 <p class="text-left">Left aligned text.</p>
766 <p class="text-center">Center aligned text.</p>
767 <p class="text-right">Right aligned text.</p>
770 <p class="text-left">Left aligned text.</p>
771 <p class="text-center">Center aligned text.</p>
772 <p class="text-right">Right aligned text.</p>
775 <h3>Emphasis classes</h3>
776 <p>Convey meaning through color with a handful of emphasis utility classes. These may also be applied to links and will darken on hover just like our default link styles.</p>
777 <div class="bs-example">
778 <p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
779 <p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
780 <p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
781 <p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
782 <p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
783 <p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
786 <p class="text-muted">...</p>
787 <p class="text-primary">...</p>
788 <p class="text-success">...</p>
789 <p class="text-info">...</p>
790 <p class="text-warning">...</p>
791 <p class="text-danger">...</p>
793 <div class="bs-callout bs-callout-info">
794 <h4>Dealing with specificity</h4>
795 <p>Sometimes emphasis classes cannot be applied due to the specificity of another selector. In most cases, a sufficient workaround is to wrap your text in a <code><span></code> with the class.</p>
799 <!-- Abbreviations -->
800 <h2 id="type-abbreviations">Abbreviations</h2>
801 <p>Stylized implementation of HTML's <code><abbr></code> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a <code>title</code> attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.</p>
803 <h3>Basic abbreviation</h3>
804 <p>For expanded text on long hover of an abbreviation, include the <code>title</code> attribute with the <code><abbr></code> element.</p>
805 <div class="bs-example">
806 <p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
809 <abbr title="attribute">attr</abbr>
813 <p>Add <code>.initialism</code> to an abbreviation for a slightly smaller font-size.</p>
814 <div class="bs-example">
815 <p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
818 <abbr title="HyperText Markup Language" class="initialism">HTML</abbr>
823 <h2 id="type-addresses">Addresses</h2>
824 <p>Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <code><br></code>.</p>
825 <div class="bs-example">
827 <strong>Twitter, Inc.</strong><br>
828 795 Folsom Ave, Suite 600<br>
829 San Francisco, CA 94107<br>
830 <abbr title="Phone">P:</abbr> (123) 456-7890
833 <strong>Full Name</strong><br>
834 <a href="mailto:#">first.last@example.com</a>
839 <strong>Twitter, Inc.</strong><br>
840 795 Folsom Ave, Suite 600<br>
841 San Francisco, CA 94107<br>
842 <abbr title="Phone">P:</abbr> (123) 456-7890
846 <strong>Full Name</strong><br>
847 <a href="mailto:#">first.last@example.com</a>
853 <h2 id="type-blockquotes">Blockquotes</h2>
854 <p>For quoting blocks of content from another source within your document.</p>
856 <h3>Default blockquote</h3>
857 <p>Wrap <code><blockquote></code> around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote. For straight quotes, we recommend a <code><p></code>.</p>
858 <div class="bs-example">
860 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
865 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
869 <h3>Blockquote options</h3>
870 <p>Style and content changes for simple variations on a standard <code><blockquote></code>.</p>
872 <h4>Naming a source</h4>
873 <p>Add <code><small></code> tag or <code>.small</code> class for identifying the source. Wrap the name of the source work in <code><cite></code>.</p>
874 <div class="bs-example">
876 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
877 <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
882 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
883 <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
887 <h4>Alternate displays</h4>
888 <p>Use <code>.pull-right</code> for a floated, right-aligned blockquote.</p>
889 <div class="bs-example" style="overflow: hidden;">
890 <blockquote class="pull-right">
891 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
892 <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
896 <blockquote class="pull-right">
903 <h2 id="type-lists">Lists</h2>
906 <p>A list of items in which the order does <em>not</em> explicitly matter.</p>
907 <div class="bs-example">
909 <li>Lorem ipsum dolor sit amet</li>
910 <li>Consectetur adipiscing elit</li>
911 <li>Integer molestie lorem at massa</li>
912 <li>Facilisis in pretium nisl aliquet</li>
913 <li>Nulla volutpat aliquam velit
915 <li>Phasellus iaculis neque</li>
916 <li>Purus sodales ultricies</li>
917 <li>Vestibulum laoreet porttitor sem</li>
918 <li>Ac tristique libero volutpat at</li>
921 <li>Faucibus porta lacus fringilla vel</li>
922 <li>Aenean sit amet erat nunc</li>
923 <li>Eget porttitor lorem</li>
933 <p>A list of items in which the order <em>does</em> explicitly matter.</p>
934 <div class="bs-example">
936 <li>Lorem ipsum dolor sit amet</li>
937 <li>Consectetur adipiscing elit</li>
938 <li>Integer molestie lorem at massa</li>
939 <li>Facilisis in pretium nisl aliquet</li>
940 <li>Nulla volutpat aliquam velit</li>
941 <li>Faucibus porta lacus fringilla vel</li>
942 <li>Aenean sit amet erat nunc</li>
943 <li>Eget porttitor lorem</li>
953 <p>Remove the default <code>list-style</code> and left margin on list items (immediate children only). <strong>This only applies to immediate children list items</strong>, meaning you will need to add the class for any nested lists as well.</p>
954 <div class="bs-example">
955 <ul class="list-unstyled">
956 <li>Lorem ipsum dolor sit amet</li>
957 <li>Consectetur adipiscing elit</li>
958 <li>Integer molestie lorem at massa</li>
959 <li>Facilisis in pretium nisl aliquet</li>
960 <li>Nulla volutpat aliquam velit
962 <li>Phasellus iaculis neque</li>
963 <li>Purus sodales ultricies</li>
964 <li>Vestibulum laoreet porttitor sem</li>
965 <li>Ac tristique libero volutpat at</li>
968 <li>Faucibus porta lacus fringilla vel</li>
969 <li>Aenean sit amet erat nunc</li>
970 <li>Eget porttitor lorem</li>
974 <ul class="list-unstyled">
980 <p>Place all list items on a single line with <code>display: inline-block;</code> and some light padding.</p>
981 <div class="bs-example">
982 <ul class="list-inline">
984 <li>Phasellus iaculis</li>
985 <li>Nulla volutpat</li>
989 <ul class="list-inline">
995 <p>A list of terms with their associated descriptions.</p>
996 <div class="bs-example">
998 <dt>Description lists</dt>
999 <dd>A description list is perfect for defining terms.</dd>
1001 <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
1002 <dd>Donec id elit non mi porta gravida at eget metus.</dd>
1003 <dt>Malesuada porta</dt>
1004 <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
1007 {% highlight html %}
1014 <h4>Horizontal description</h4>
1015 <p>Make terms and descriptions in <code><dl></code> line up side-by-side. Starts off stacked like default <code><dl></code>s, but when the navbar expands, so do these.</p>
1016 <div class="bs-example">
1017 <dl class="dl-horizontal">
1018 <dt>Description lists</dt>
1019 <dd>A description list is perfect for defining terms.</dd>
1021 <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
1022 <dd>Donec id elit non mi porta gravida at eget metus.</dd>
1023 <dt>Malesuada porta</dt>
1024 <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
1025 <dt>Felis euismod semper eget lacinia</dt>
1026 <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
1029 {% highlight html %}
1030 <dl class="dl-horizontal">
1036 <div class="bs-callout bs-callout-info">
1037 <h4>Auto-truncating</h4>
1038 <p>Horizontal description lists will truncate terms that are too long to fit in the left column with <code>text-overflow</code>. In narrower viewports, they will change to the default stacked layout.</p>
1044 ================================================== -->
1045 <div class="bs-docs-section">
1046 <div class="page-header">
1047 <h1 id="code">Code</h1>
1051 <p>Wrap inline snippets of code with <code><code></code>.</p>
1052 <div class="bs-example">
1053 For example, <code><section></code> should be wrapped as inline.
1055 {% highlight html %}
1056 For example, <code><section></code> should be wrapped as inline.
1059 <h2>Basic block</h2>
1060 <p>Use <code><pre></code> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.</p>
1061 <div class="bs-example">
1062 <pre><p>Sample text here...</p></pre>
1064 {% highlight html %}
1065 <pre><p>Sample text here...</p></pre>
1068 <p>You may optionally add the <code>.pre-scrollable</code> class, which will set a max-height of 350px and provide a y-axis scrollbar.</p>
1074 ================================================== -->
1075 <div class="bs-docs-section">
1076 <div class="page-header">
1077 <h1 id="tables">Tables</h1>
1080 <h2 id="tables-example">Basic example</h2>
1081 <p>For basic styling—light padding and only horizontal dividers—add the base class <code>.table</code> to any <code><table></code>. It may seem super redundant, but given the widespread use of tables for other plugins like calendars and date pickers, we've opted to isolate our custom table styles.</p>
1082 <div class="bs-example">
1083 <table class="table">
1113 </div><!-- /example -->
1114 {% highlight html %}
1115 <table class="table">
1121 <h2 id="tables-striped">Striped rows</h2>
1122 <p>Use <code>.table-striped</code> to add zebra-striping to any table row within the <code><tbody></code>.</p>
1123 <div class="bs-callout bs-callout-danger">
1124 <h4>Cross-browser compatibility</h4>
1125 <p>Striped tables are styled via the <code>:nth-child</code> CSS selector, which is not available in Internet Explorer 8.</p>
1127 <div class="bs-example">
1128 <table class="table table-striped">
1158 </div><!-- /example -->
1159 {% highlight html %}
1160 <table class="table table-striped">
1166 <h2 id="tables-bordered">Bordered table</h2>
1167 <p>Add <code>.table-bordered</code> for borders on all sides of the table and cells.</p>
1168 <div class="bs-example">
1169 <table class="table table-bordered">
1180 <td rowspan="2">1</td>
1188 <td>@TwBootstrap</td>
1198 <td colspan="2">Larry the Bird</td>
1203 </div><!-- /example -->
1204 {% highlight html %}
1205 <table class="table table-bordered">
1211 <h2 id="tables-hover-rows">Hover rows</h2>
1212 <p>Add <code>.table-hover</code> to enable a hover state on table rows within a <code><tbody></code>.</p>
1213 <div class="bs-example">
1214 <table class="table table-hover">
1238 <td colspan="2">Larry the Bird</td>
1243 </div><!-- /example -->
1244 {% highlight html %}
1245 <table class="table table-hover">
1251 <h2 id="tables-condensed">Condensed table</h2>
1252 <p>Add <code>.table-condensed</code> to make tables more compact by cutting cell padding in half.</p>
1253 <div class="bs-example">
1254 <table class="table table-condensed">
1278 <td colspan="2">Larry the Bird</td>
1283 </div><!-- /example -->
1284 {% highlight html %}
1285 <table class="table table-condensed">
1291 <h2 id="tables-contextual-classes">Contextual classes</h2>
1292 <p>Use contextual classes to color table rows or individual cells.</p>
1293 <div class="table-responsive">
1294 <table class="table table-bordered table-striped">
1296 <col class="col-xs-1">
1297 <col class="col-xs-7">
1302 <th>Description</th>
1308 <code>.active</code>
1310 <td>Applies the hover color to a particular row or cell</td>
1314 <code>.success</code>
1316 <td>Indicates a successful or positive action</td>
1320 <code>.warning</code>
1322 <td>Indicates a warning that might need attention</td>
1326 <code>.danger</code>
1328 <td>Indicates a dangerous or potentially negative action</td>
1333 <div class="bs-example">
1334 <table class="table">
1338 <th>Column heading</th>
1339 <th>Column heading</th>
1340 <th>Column heading</th>
1346 <td>Column content</td>
1347 <td>Column content</td>
1348 <td>Column content</td>
1352 <td>Column content</td>
1353 <td>Column content</td>
1354 <td>Column content</td>
1356 <tr class="success">
1358 <td>Column content</td>
1359 <td>Column content</td>
1360 <td>Column content</td>
1364 <td>Column content</td>
1365 <td>Column content</td>
1366 <td>Column content</td>
1368 <tr class="warning">
1370 <td>Column content</td>
1371 <td>Column content</td>
1372 <td>Column content</td>
1376 <td>Column content</td>
1377 <td>Column content</td>
1378 <td>Column content</td>
1382 <td>Column content</td>
1383 <td>Column content</td>
1384 <td>Column content</td>
1388 </div><!-- /example -->
1389 {% highlight html %}
1391 <tr class="active">...</tr>
1392 <tr class="success">...</tr>
1393 <tr class="warning">...</tr>
1394 <tr class="danger">...</tr>
1396 <!-- On cells (`td` or `th`) -->
1398 <td class="active">...</td>
1399 <td class="success">...</td>
1400 <td class="warning">...</td>
1401 <td class="danger">...</td>
1406 <h2 id="tables-responsive">Responsive tables</h2>
1407 <p>Create responsive tables by wrapping any <code>.table</code> in <code>.table-responsive</code> to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.</p>
1408 <div class="bs-example">
1409 <div class="table-responsive">
1410 <table class="table">
1414 <th>Table heading</th>
1415 <th>Table heading</th>
1416 <th>Table heading</th>
1417 <th>Table heading</th>
1418 <th>Table heading</th>
1419 <th>Table heading</th>
1452 </div><!-- /.table-responsive -->
1454 <div class="table-responsive">
1455 <table class="table table-bordered">
1459 <th>Table heading</th>
1460 <th>Table heading</th>
1461 <th>Table heading</th>
1462 <th>Table heading</th>
1463 <th>Table heading</th>
1464 <th>Table heading</th>
1497 </div><!-- /.table-responsive -->
1498 </div><!-- /example -->
1499 {% highlight html %}
1500 <div class="table-responsive">
1501 <table class="table">
1512 ================================================== -->
1513 <div class="bs-docs-section">
1514 <div class="page-header">
1515 <h1 id="forms">Forms</h1>
1518 <h2 id="forms-example">Basic example</h2>
1519 <p>Individual form controls automatically receive some global styling. All textual <code><input></code>, <code><textarea></code>, and <code><select></code> elements with <code>.form-control</code> are set to <code>width: 100%;</code> by default. Wrap labels and controls in <code>.form-group</code> for optimum spacing.</p>
1520 <div class="bs-example">
1522 <div class="form-group">
1523 <label for="exampleInputEmail1">Email address</label>
1524 <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
1526 <div class="form-group">
1527 <label for="exampleInputPassword1">Password</label>
1528 <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
1530 <div class="form-group">
1531 <label for="exampleInputFile">File input</label>
1532 <input type="file" id="exampleInputFile">
1533 <p class="help-block">Example block-level help text here.</p>
1535 <div class="checkbox">
1537 <input type="checkbox"> Check me out
1540 <button type="submit" class="btn btn-default">Submit</button>
1542 </div><!-- /example -->
1543 {% highlight html %}
1545 <div class="form-group">
1546 <label for="exampleInputEmail1">Email address</label>
1547 <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
1549 <div class="form-group">
1550 <label for="exampleInputPassword1">Password</label>
1551 <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
1553 <div class="form-group">
1554 <label for="exampleInputFile">File input</label>
1555 <input type="file" id="exampleInputFile">
1556 <p class="help-block">Example block-level help text here.</p>
1558 <div class="checkbox">
1560 <input type="checkbox"> Check me out
1563 <button type="submit" class="btn btn-default">Submit</button>
1568 <h2 id="forms-inline">Inline form</h2>
1569 <p>Add <code>.form-inline</code> to your <code><form></code> for left-aligned and inline-block controls. <strong>This only applies to forms within viewports that are at least 768px wide.</strong></p>
1570 <div class="bs-callout bs-callout-danger">
1571 <h4>Requires custom widths</h4>
1572 <p>Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within.</p>
1574 <div class="bs-callout bs-callout-danger">
1575 <h4>Always add labels</h4>
1576 <p>Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the <code>.sr-only</code> class.</p>
1578 <div class="bs-example">
1579 <form class="form-inline" role="form">
1580 <div class="form-group">
1581 <label class="sr-only" for="exampleInputEmail2">Email address</label>
1582 <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
1584 <div class="form-group">
1585 <label class="sr-only" for="exampleInputPassword2">Password</label>
1586 <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
1588 <div class="checkbox">
1590 <input type="checkbox"> Remember me
1593 <button type="submit" class="btn btn-default">Sign in</button>
1595 </div><!-- /example -->
1596 {% highlight html %}
1597 <form class="form-inline" role="form">
1598 <div class="form-group">
1599 <label class="sr-only" for="exampleInputEmail2">Email address</label>
1600 <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
1602 <div class="form-group">
1603 <label class="sr-only" for="exampleInputPassword2">Password</label>
1604 <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
1606 <div class="checkbox">
1608 <input type="checkbox"> Remember me
1611 <button type="submit" class="btn btn-default">Sign in</button>
1616 <h2 id="forms-horizontal">Horizontal form</h2>
1617 <p>Use Bootstrap's predefined grid classes to align labels and groups of form controls in a horizontal layout by adding <code>.form-horizontal</code> to the form. Doing so changes <code>.form-group</code>s to behave as grid rows, so no need for <code>.row</code>.</p>
1618 <div class="bs-example">
1619 <form class="form-horizontal" role="form">
1620 <div class="form-group">
1621 <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
1622 <div class="col-sm-10">
1623 <input type="email" class="form-control" id="inputEmail3" placeholder="Email">
1626 <div class="form-group">
1627 <label for="inputPassword3" class="col-sm-2 control-label">Password</label>
1628 <div class="col-sm-10">
1629 <input type="password" class="form-control" id="inputPassword3" placeholder="Password">
1632 <div class="form-group">
1633 <div class="col-sm-offset-2 col-sm-10">
1634 <div class="checkbox">
1636 <input type="checkbox"> Remember me
1641 <div class="form-group">
1642 <div class="col-sm-offset-2 col-sm-10">
1643 <button type="submit" class="btn btn-default">Sign in</button>
1647 </div><!-- /.bs-example -->
1648 {% highlight html %}
1649 <form class="form-horizontal" role="form">
1650 <div class="form-group">
1651 <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
1652 <div class="col-sm-10">
1653 <input type="email" class="form-control" id="inputEmail3" placeholder="Email">
1656 <div class="form-group">
1657 <label for="inputPassword3" class="col-sm-2 control-label">Password</label>
1658 <div class="col-sm-10">
1659 <input type="password" class="form-control" id="inputPassword3" placeholder="Password">
1662 <div class="form-group">
1663 <div class="col-sm-offset-2 col-sm-10">
1664 <div class="checkbox">
1666 <input type="checkbox"> Remember me
1671 <div class="form-group">
1672 <div class="col-sm-offset-2 col-sm-10">
1673 <button type="submit" class="btn btn-default">Sign in</button>
1680 <h2 id="forms-controls">Supported controls</h2>
1681 <p>Examples of standard form controls supported in an example form layout.</p>
1684 <p>Most common form control, text-based input fields. Includes support for all HTML5 types: <code>text</code>, <code>password</code>, <code>datetime</code>, <code>datetime-local</code>, <code>date</code>, <code>month</code>, <code>time</code>, <code>week</code>, <code>number</code>, <code>email</code>, <code>url</code>, <code>search</code>, <code>tel</code>, and <code>color</code>.</p>
1685 <div class="bs-callout bs-callout-danger">
1686 <h4>Type declaration required</h4>
1687 <p>Inputs will only be fully styled if their <code>type</code> is properly declared.</p>
1689 <div class="bs-example">
1691 <input type="text" class="form-control" placeholder="Text input">
1693 </div><!-- /.bs-example -->
1694 {% highlight html %}
1695 <input type="text" class="form-control" placeholder="Text input">
1697 <div class="bs-callout bs-callout-info">
1698 <h4>Input groups</h4>
1699 <p>To add integrated text or buttons before and/or after any text-based <code><input></code>, <a href="../components/#input-groups">check out the input group component</a>.</p>
1703 <p>Form control which supports multiple lines of text. Change <code>rows</code> attribute as necessary.</p>
1704 <div class="bs-example">
1706 <textarea class="form-control" rows="3"></textarea>
1708 </div><!-- /.bs-example -->
1709 {% highlight html %}
1710 <textarea class="form-control" rows="3"></textarea>
1713 <h3>Checkboxes and radios</h3>
1714 <p>Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.</p>
1715 <h4>Default (stacked)</h4>
1716 <div class="bs-example">
1718 <div class="checkbox">
1720 <input type="checkbox" value="">
1721 Option one is this and that—be sure to include why it's great
1727 <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
1728 Option one is this and that—be sure to include why it's great
1733 <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
1734 Option two can be something else and selecting it will deselect option one
1738 </div><!-- /.bs-example -->
1739 {% highlight html %}
1740 <div class="checkbox">
1742 <input type="checkbox" value="">
1743 Option one is this and that—be sure to include why it's great
1749 <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
1750 Option one is this and that—be sure to include why it's great
1755 <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
1756 Option two can be something else and selecting it will deselect option one
1761 <h4>Inline checkboxes</h4>
1762 <p>Use <code>.checkbox-inline</code> or <code>.radio-inline</code> class to a series of checkboxes or radios for controls appear on the same line.</p>
1763 <div class="bs-example">
1765 <label class="checkbox-inline">
1766 <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
1768 <label class="checkbox-inline">
1769 <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
1771 <label class="checkbox-inline">
1772 <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
1775 </div><!-- /.bs-example -->
1776 {% highlight html %}
1777 <label class="checkbox-inline">
1778 <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
1780 <label class="checkbox-inline">
1781 <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
1783 <label class="checkbox-inline">
1784 <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
1789 <p>Use the default option, or add <code>multiple</code> to show multiple options at once.</p>
1790 <div class="bs-example">
1792 <select class="form-control">
1800 <select multiple class="form-control">
1808 </div><!-- /.bs-example -->
1809 {% highlight html %}
1810 <select class="form-control">
1818 <select multiple class="form-control">
1828 <h2 id="forms-controls-static">Static control</h2>
1829 <p>When you need to place plain text next to a form label within a horizontal form, use the <code>.form-control-static</code> class on a <code><p></code>.</p>
1830 <div class="bs-example">
1831 <form class="form-horizontal" role="form">
1832 <div class="form-group">
1833 <label class="col-sm-2 control-label">Email</label>
1834 <div class="col-sm-10">
1835 <p class="form-control-static">email@example.com</p>
1838 <div class="form-group">
1839 <label for="inputPassword" class="col-sm-2 control-label">Password</label>
1840 <div class="col-sm-10">
1841 <input type="password" class="form-control" id="inputPassword" placeholder="Password">
1845 </div><!-- /.bs-example -->
1846 {% highlight html %}
1847 <form class="form-horizontal" role="form">
1848 <div class="form-group">
1849 <label class="col-sm-2 control-label">Email</label>
1850 <div class="col-sm-10">
1851 <p class="form-control-static">email@example.com</p>
1854 <div class="form-group">
1855 <label for="inputPassword" class="col-sm-2 control-label">Password</label>
1856 <div class="col-sm-10">
1857 <input type="password" class="form-control" id="inputPassword" placeholder="Password">
1864 <h2 id="forms-control-states">Form states</h2>
1865 <p>Provide feedback to users or visitors with basic feedback states on form controls and labels.</p>
1867 <h3 id="forms-input-focus">Input focus</h3>
1868 <p>We remove the default <code>outline</code> styles on some form controls and apply a <code>box-shadow</code> in its place for <code>:focus</code>.</p>
1869 <div class="bs-example">
1871 <input class="form-control" id="focusedInput" type="text" value="This is focused...">
1874 {% highlight html %}
1875 <input class="form-control" id="focusedInput" type="text" value="This is focused...">
1878 <h3 id="forms-disabled-inputs">Disabled inputs</h3>
1879 <p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
1880 <div class="bs-example">
1882 <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here…" disabled>
1884 </div><!-- /.bs-example -->
1885 {% highlight html %}
1886 <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
1889 <h3 id="forms-disabled-fieldsets">Disabled fieldsets</h3>
1890 <p>Add the <code>disabled</code> attribute to a <code><fieldset></code> to disable all the controls within the <code><fieldset></code> at once.</p>
1892 <div class="bs-callout bs-callout-warning">
1893 <h4>Link functionality of <code><a></code> not impacted</h4>
1894 <p>This class will only change the appearance of <code><a class="btn btn-default"></code> buttons, not their functionality. Use custom JavaScript to disable links here.</p>
1897 <div class="bs-callout bs-callout-danger">
1898 <h4>Cross-browser compatibility</h4>
1899 <p>While Bootstrap will apply these styles in all browsers, Internet Explorer 9 and below don't actually support the <code>disabled</code> attribute on a <code><fieldset></code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
1902 <div class="bs-example">
1905 <div class="form-group">
1906 <label for="disabledTextInput">Disabled input</label>
1907 <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
1909 <div class="form-group">
1910 <label for="disabledSelect">Disabled select menu</label>
1911 <select id="disabledSelect" class="form-control">
1912 <option>Disabled select</option>
1915 <div class="checkbox">
1917 <input type="checkbox"> Can't check this
1920 <button type="submit" class="btn btn-primary">Submit</button>
1923 </div><!-- /.bs-example -->
1924 {% highlight html %}
1927 <div class="form-group">
1928 <label for="disabledTextInput">Disabled input</label>
1929 <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
1931 <div class="form-group">
1932 <label for="disabledSelect">Disabled select menu</label>
1933 <select id="disabledSelect" class="form-control">
1934 <option>Disabled select</option>
1937 <div class="checkbox">
1939 <input type="checkbox"> Can't check this
1942 <button type="submit" class="btn btn-primary">Submit</button>
1947 <h3 id="forms-validation">Validation states</h3>
1948 <p>Bootstrap includes validation styles for error, warning, and success states on form controls. To use, add <code>.has-warning</code>, <code>.has-error</code>, or <code>.has-success</code> to the parent element. Any <code>.control-label</code>, <code>.form-control</code>, and <code>.help-block</code> within that element will receive the validation styles.</p>
1950 <div class="bs-example">
1952 <div class="form-group has-success">
1953 <label class="control-label" for="inputSuccess">Input with success</label>
1954 <input type="text" class="form-control" id="inputSuccess">
1956 <div class="form-group has-warning">
1957 <label class="control-label" for="inputWarning">Input with warning</label>
1958 <input type="text" class="form-control" id="inputWarning">
1960 <div class="form-group has-error">
1961 <label class="control-label" for="inputError">Input with error</label>
1962 <input type="text" class="form-control" id="inputError">
1965 </div><!-- /.bs-example -->
1966 {% highlight html %}
1967 <div class="form-group has-success">
1968 <label class="control-label" for="inputSuccess">Input with success</label>
1969 <input type="text" class="form-control" id="inputSuccess">
1971 <div class="form-group has-warning">
1972 <label class="control-label" for="inputWarning">Input with warning</label>
1973 <input type="text" class="form-control" id="inputWarning">
1975 <div class="form-group has-error">
1976 <label class="control-label" for="inputError">Input with error</label>
1977 <input type="text" class="form-control" id="inputError">
1982 <h2 id="forms-control-sizes">Control sizing</h2>
1983 <p>Set heights using classes like <code>.input-lg</code>, and set widths using grid column classes like <code>.col-lg-*</code>.</p>
1985 <h3>Height sizing</h3>
1986 <p>Create larger or smaller form controls that match button sizes.</p>
1987 <div class="bs-example bs-example-control-sizing">
1989 <div class="controls">
1990 <input class="form-control input-lg" type="text" placeholder=".input-lg">
1991 <input type="text" class="form-control" placeholder="Default input">
1992 <input class="form-control input-sm" type="text" placeholder=".input-sm">
1994 <select class="form-control input-lg">
1995 <option value="">.input-lg</option>
1997 <select class="form-control">
1998 <option value="">Default select</option>
2000 <select class="form-control input-sm">
2001 <option value="">.input-sm</option>
2005 </div><!-- /.bs-example -->
2006 {% highlight html %}
2007 <input class="form-control input-lg" type="text" placeholder=".input-lg">
2008 <input class="form-control" type="text" placeholder="Default input">
2009 <input class="form-control input-sm" type="text" placeholder=".input-sm">
2011 <select class="form-control input-lg">...</select>
2012 <select class="form-control">...</select>
2013 <select class="form-control input-sm">...</select>
2016 <h3>Column sizing</h3>
2017 <p>Wrap inputs in grid columns, or any custom parent element, to easily enforce desired widths.</p>
2018 <div class="bs-example">
2021 <div class="col-xs-2">
2022 <input type="text" class="form-control" placeholder=".col-xs-2">
2024 <div class="col-xs-3">
2025 <input type="text" class="form-control" placeholder=".col-xs-3">
2027 <div class="col-xs-4">
2028 <input type="text" class="form-control" placeholder=".col-xs-4">
2032 </div><!-- /.bs-example -->
2033 {% highlight html %}
2035 <div class="col-xs-2">
2036 <input type="text" class="form-control" placeholder=".col-xs-2">
2038 <div class="col-xs-3">
2039 <input type="text" class="form-control" placeholder=".col-xs-3">
2041 <div class="col-xs-4">
2042 <input type="text" class="form-control" placeholder=".col-xs-4">
2047 <h2 id="forms-help-text">Help text</h2>
2048 <p>Block level help text for form controls.</p>
2049 <div class="bs-example">
2051 <input type="text" class="form-control">
2052 <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
2054 </div><!-- /.bs-example -->
2055 {% highlight html %}
2056 <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
2064 ================================================== -->
2065 <div class="bs-docs-section">
2066 <div class="page-header">
2067 <h1 id="buttons">Buttons</h1>
2070 <h2 id="buttons-options">Options</h2>
2071 <p>Use any of the available button classes to quickly create a styled button.</p>
2072 <div class="bs-example">
2073 <button type="button" class="btn btn-default">Default</button>
2074 <button type="button" class="btn btn-primary">Primary</button>
2075 <button type="button" class="btn btn-success">Success</button>
2076 <button type="button" class="btn btn-info">Info</button>
2077 <button type="button" class="btn btn-warning">Warning</button>
2078 <button type="button" class="btn btn-danger">Danger</button>
2079 <button type="button" class="btn btn-link">Link</button>
2081 {% highlight html %}
2082 <!-- Standard button -->
2083 <button type="button" class="btn btn-default">Default</button>
2085 <!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
2086 <button type="button" class="btn btn-primary">Primary</button>
2088 <!-- Indicates a successful or positive action -->
2089 <button type="button" class="btn btn-success">Success</button>
2091 <!-- Contextual button for informational alert messages -->
2092 <button type="button" class="btn btn-info">Info</button>
2094 <!-- Indicates caution should be taken with this action -->
2095 <button type="button" class="btn btn-warning">Warning</button>
2097 <!-- Indicates a dangerous or potentially negative action -->
2098 <button type="button" class="btn btn-danger">Danger</button>
2100 <!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
2101 <button type="button" class="btn btn-link">Link</button>
2104 <h2 id="buttons-sizes">Sizes</h2>
2105 <p>Fancy larger or smaller buttons? Add <code>.btn-lg</code>, <code>.btn-sm</code>, or <code>.btn-xs</code> for additional sizes.</p>
2106 <div class="bs-example">
2108 <button type="button" class="btn btn-primary btn-lg">Large button</button>
2109 <button type="button" class="btn btn-default btn-lg">Large button</button>
2112 <button type="button" class="btn btn-primary">Default button</button>
2113 <button type="button" class="btn btn-default">Default button</button>
2116 <button type="button" class="btn btn-primary btn-sm">Small button</button>
2117 <button type="button" class="btn btn-default btn-sm">Small button</button>
2120 <button type="button" class="btn btn-primary btn-xs">Extra small button</button>
2121 <button type="button" class="btn btn-default btn-xs">Extra small button</button>
2124 {% highlight html %}
2126 <button type="button" class="btn btn-primary btn-lg">Large button</button>
2127 <button type="button" class="btn btn-default btn-lg">Large button</button>
2130 <button type="button" class="btn btn-primary">Default button</button>
2131 <button type="button" class="btn btn-default">Default button</button>
2134 <button type="button" class="btn btn-primary btn-sm">Small button</button>
2135 <button type="button" class="btn btn-default btn-sm">Small button</button>
2138 <button type="button" class="btn btn-primary btn-xs">Extra small button</button>
2139 <button type="button" class="btn btn-default btn-xs">Extra small button</button>
2143 <p>Create block level buttons—those that span the full width of a parent— by adding <code>.btn-block</code>.</p>
2144 <div class="bs-example">
2145 <div class="well" style="max-width: 400px; margin: 0 auto 10px;">
2146 <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
2147 <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
2150 {% highlight html %}
2151 <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
2152 <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
2156 <h2 id="buttons-active">Active state</h2>
2157 <p>Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <code><button></code> elements, this is done via <code>:active</code>. For <code><a></code> elements, it's done with <code>.active</code>. However, you may use <code>.active</code> <code><button></code>s should you need to replicate the active state progammatically.</p>
2159 <h3>Button element</h3>
2160 <p>No need to add <code>:active</code> as it's a pseudo-class, but if you need to force the same appearance, go ahead and add <code>.active</code>.</p>
2161 <p class="bs-example">
2162 <button type="button" class="btn btn-primary btn-lg active">Primary button</button>
2163 <button type="button" class="btn btn-default btn-lg active">Button</button>
2165 {% highlight html %}
2166 <button type="button" class="btn btn-primary btn-lg active">Primary button</button>
2167 <button type="button" class="btn btn-default btn-lg active">Button</button>
2170 <h3>Anchor element</h3>
2171 <p>Add the <code>.active</code> class to <code><a></code> buttons.</p>
2172 <p class="bs-example">
2173 <a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
2174 <a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
2176 {% highlight html %}
2177 <a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
2178 <a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
2182 <h2 id="buttons-disabled">Disabled state</h2>
2183 <p>Make buttons look unclickable by fading them back 50%.</p>
2185 <h3>Button element</h3>
2186 <p>Add the <code>disabled</code> attribute to <code><button></code> buttons.</p>
2187 <p class="bs-example">
2188 <button type="button" class="btn btn-primary btn-lg" disabled="disabled">Primary button</button>
2189 <button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
2191 {% highlight html %}
2192 <button type="button" class="btn btn-lg btn-primary" disabled="disabled">Primary button</button>
2193 <button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
2196 <div class="bs-callout bs-callout-danger">
2197 <h4>Cross-browser compatibility</h4>
2198 <p>If you add the <code>disabled</code> attribute to a <code><button></code>, Internet Explorer 9 and below will render text gray with a nasty text-shadow that we cannot fix.</p>
2201 <h3>Anchor element</h3>
2202 <p>Add the <code>.disabled</code> class to <code><a></code> buttons.</p>
2203 <p class="bs-example">
2204 <a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
2205 <a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
2207 {% highlight html %}
2208 <a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
2209 <a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
2212 We use <code>.disabled</code> as a utility class here, similar to the common <code>.active</code> class, so no prefix is required.
2214 <div class="bs-callout bs-callout-warning">
2215 <h4>Link functionality not impacted</h4>
2216 <p>This class will only change the <code><a></code>'s appearance, not its functionality. Use custom JavaScript to disable links here.</p>
2218 <div class="bs-callout bs-callout-warning">
2219 <h4>Context-specific usage</h4>
2220 <p>While button classes can be used on <code><a></code> and <code><button></code> elements, only <code><button></code> elements are supported within our nav and navbar components.</p>
2224 <h2 id="buttons-tags">Button tags</h2>
2225 <p>Use the button classes on an <code><a></code>, <code><button></code>, or <code><input></code> element.</p>
2226 <form class="bs-example">
2227 <a class="btn btn-default" href="#" role="button">Link</a>
2228 <button class="btn btn-default" type="submit">Button</button>
2229 <input class="btn btn-default" type="button" value="Input">
2230 <input class="btn btn-default" type="submit" value="Submit">
2232 {% highlight html %}
2233 <a class="btn btn-default" href="#" role="button">Link</a>
2234 <button class="btn btn-default" type="submit">Button</button>
2235 <input class="btn btn-default" type="button" value="Input">
2236 <input class="btn btn-default" type="submit" value="Submit">
2239 <div class="bs-callout bs-callout-warning">
2240 <h4>Cross-browser rendering</h4>
2241 <p>As a best practice, <strong>we highly recommend using the <code><button></code> element whenever possible</strong> to ensure matching cross-browser rendering.</p>
2242 <p>Among other things, there's <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=697451">a Firefox bug</a> that prevents us from setting the <code>line-height</code> of <code><input></code>-based buttons, causing them to not exactly match the height of other buttons on Firefox.</p>
2250 ================================================== -->
2251 <div class="bs-docs-section">
2252 <div class="page-header">
2253 <h1 id="images">Images</h1>
2256 <p>Add classes to an <code><img></code> element to easily style images in any project.</p>
2257 <div class="bs-callout bs-callout-danger">
2258 <h4>Cross-browser compatibility</h4>
2259 <p>Keep in mind that Internet Explorer 8 lacks support for rounded corners.</p>
2261 <div class="bs-example bs-example-images">
2262 <img data-src="holder.js/140x140" class="img-rounded" alt="A generic square placeholder image with rounded corners">
2263 <img data-src="holder.js/140x140" class="img-circle" alt="A generic square placeholder image where only the portion within the circle circumscribed about said square is visible">
2264 <img data-src="holder.js/140x140" class="img-thumbnail" alt="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera">
2266 {% highlight html %}
2267 <img src="..." alt="..." class="img-rounded">
2268 <img src="..." alt="..." class="img-circle">
2269 <img src="..." alt="..." class="img-thumbnail">
2272 <div class="bs-callout bs-callout-warning">
2273 <h4>Responsive images</h4>
2274 <p>Looking for how to make images more responsive? <a href="#overview-responsive-images">Check out the responsive images section</a> up top.</p>
2281 ================================================== -->
2282 <div class="bs-docs-section">
2283 <div class="page-header">
2284 <h1 id="helper-classes">Helper classes</h1>
2288 <h3 id="helper-classes-close">Close icon</h3>
2289 <p>Use the generic close icon for dismissing content like modals and alerts.</p>
2290 <div class="bs-example">
2291 <p><button type="button" class="close" aria-hidden="true">×</button></p>
2293 {% highlight html %}
2294 <button type="button" class="close" aria-hidden="true">×</button>
2298 <h3 id="helper-classes-carets">Carets</h3>
2299 <p>Use carets to indicate dropdown functionality and direction. Note that the default caret will reverse automatically in <a href="../components/#btn-dropdowns-dropup">dropup menus</a>.</p>
2300 <div class="bs-example">
2301 <span class="caret"></span>
2303 {% highlight html %}
2304 <span class="caret"></span>
2308 <h3 id="helper-classes-floats">Quick floats</h3>
2309 <p>Float an element to the left or right with a class. <code>!important</code> is included to avoid specificity issues. Classes can also be used as mixins.</p>
2310 {% highlight html %}
2311 <div class="pull-left">...</div>
2312 <div class="pull-right">...</div>
2317 float: left !important;
2320 float: right !important;
2332 <div class="bs-callout bs-callout-warning">
2333 <h4>Not for use in navbars</h4>
2334 <p>To align components in navbars with utility classes, use <code>.navbar-left</code> or <code>.navbar-right</code> instead. <a href="../components/#navbar-component-alignment">See the navbar docs</a> for details.</p>
2338 <h3 id="helper-classes-center">Center content blocks</h3>
2339 <p>Set an element to <code>display: block</code> and center via <code>margin</code>. Available as a mixin and class.</p>
2340 {% highlight html %}
2341 <div class="center-block">...</div>
2359 <h3 id="helper-classes-clearfix">Clearfix</h3>
2360 <p>Clear the <code>float</code> on any element with the <code>.clearfix</code> class. Utilizes <a href="http://nicolasgallagher.com/micro-clearfix-hack/">the micro clearfix</a> as popularized by Nicolas Gallagher. Can also be used as a mixin.</p>
2361 {% highlight html %}
2362 <!-- Usage as a class -->
2363 <div class="clearfix">...</div>
2385 <h3 id="helper-classes-show-hide">Showing and hiding content</h3>
2386 <p>Force an element to be shown or hidden (<strong>including for screen readers</strong>) with the use of <code>.show</code> and <code>.hidden</code> classes. These classes use <code>!important</code> to avoid specificity conflicts, just like the <a href="#helper-classes-floats">quick floats</a>. They are only available for block level toggling. They can also be used as mixins.</p>
2387 <p><code>.hide</code> is available, but it does not always affect screen readers and is <strong>deprecated</strong> as of v3.0.1. Use <code>.hidden</code> or <code>.sr-only</code> instead.</p>
2388 <p>Furthermore, <code>.invisible</code> can be used to toggle only the visibility of an element, meaning its <code>display</code> is not modified and the element can still affect the flow of the document.</p>
2389 {% highlight html %}
2390 <div class="show">...</div>
2391 <div class="hidden">...</div>
2396 display: block !important;
2399 display: none !important;
2400 visibility: hidden !important;
2416 <h3 id="helper-classes-screen-readers">Screen reader content</h3>
2417 <p>Hide an element to all devices <strong>except screen readers</strong> with <code>.sr-only</code>. Necessary for following <a href="{{ page.base_url }}getting-started#accessibility">accessibility best practices</a>. Can also be used as a mixin.</p>
2418 {% highlight html %}
2419 <a class="sr-only" href="#content">Skip to main content</a>
2429 <h3 id="helper-classes-image-replacement">Image replacement</h3>
2430 <p>Utilize the <code>.text-hide</code> class or mixin to help replace an element's text content with a background image.</p>
2431 {% highlight html %}
2432 <h1 class="text-hide">Custom heading</h1>
2444 <!-- Responsive utilities
2445 ================================================== -->
2446 <div class="bs-docs-section" id="responsive-utilities">
2447 <div class="page-header">
2448 <h1>Responsive utilities</h1>
2450 <p class="lead">For faster mobile-friendly development, use these utility classes for showing and hiding content by device via media query. Also included are utility classes for toggling content when printed.</p>
2451 <p>Try to use these on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. <strong>Responsive utilities are currently only available for block and table toggling.</strong> Use with inline and table elements is currently not supported.</p>
2454 <h2 id="responsive-utilities-classes">Available classes</h2>
2455 <p>Use a single or combination of the available classes for toggling content across viewport breakpoints.</p>
2456 <div class="table-responsive">
2457 <table class="table table-bordered table-striped responsive-utilities">
2463 <small>Phones (<768px)</small>
2467 <small>Tablets (≥768px)</small>
2471 <small>Desktops (≥992px)</small>
2475 <small>Desktops (≥1200px)</small>
2481 <th><code>.visible-xs</code></th>
2482 <td class="is-visible">Visible</td>
2483 <td class="is-hidden">Hidden</td>
2484 <td class="is-hidden">Hidden</td>
2485 <td class="is-hidden">Hidden</td>
2488 <th><code>.visible-sm</code></th>
2489 <td class="is-hidden">Hidden</td>
2490 <td class="is-visible">Visible</td>
2491 <td class="is-hidden">Hidden</td>
2492 <td class="is-hidden">Hidden</td>
2495 <th><code>.visible-md</code></th>
2496 <td class="is-hidden">Hidden</td>
2497 <td class="is-hidden">Hidden</td>
2498 <td class="is-visible">Visible</td>
2499 <td class="is-hidden">Hidden</td>
2502 <th><code>.visible-lg</code></th>
2503 <td class="is-hidden">Hidden</td>
2504 <td class="is-hidden">Hidden</td>
2505 <td class="is-hidden">Hidden</td>
2506 <td class="is-visible">Visible</td>
2511 <th><code>.hidden-xs</code></th>
2512 <td class="is-hidden">Hidden</td>
2513 <td class="is-visible">Visible</td>
2514 <td class="is-visible">Visible</td>
2515 <td class="is-visible">Visible</td>
2518 <th><code>.hidden-sm</code></th>
2519 <td class="is-visible">Visible</td>
2520 <td class="is-hidden">Hidden</td>
2521 <td class="is-visible">Visible</td>
2522 <td class="is-visible">Visible</td>
2525 <th><code>.hidden-md</code></th>
2526 <td class="is-visible">Visible</td>
2527 <td class="is-visible">Visible</td>
2528 <td class="is-hidden">Hidden</td>
2529 <td class="is-visible">Visible</td>
2532 <th><code>.hidden-lg</code></th>
2533 <td class="is-visible">Visible</td>
2534 <td class="is-visible">Visible</td>
2535 <td class="is-visible">Visible</td>
2536 <td class="is-hidden">Hidden</td>
2543 <h2 id="responsive-utilities-print">Print classes</h2>
2544 <p>Similar to the regular responsive classes, use these for toggling content for print.</p>
2545 <div class="table-responsive">
2546 <table class="table table-bordered table-striped responsive-utilities">
2556 <th><code>.visible-print</code></th>
2557 <td class="is-hidden">Hidden</td>
2558 <td class="is-visible">Visible</td>
2561 <th><code>.hidden-print</code></th>
2562 <td class="is-visible">Visible</td>
2563 <td class="is-hidden">Hidden</td>
2570 <h2 id="responsive-utilities-tests">Test cases</h2>
2571 <p>Resize your browser or load on different devices to test the responsive utility classes.</p>
2573 <h3>Visible on...</h3>
2574 <p>Green checkmarks indicate the element <strong>is visible</strong> in your current viewport.</p>
2575 <div class="row responsive-utilities-test visible-on">
2576 <div class="col-xs-6 col-sm-3">
2577 <span class="hidden-xs">Extra small</span>
2578 <span class="visible-xs">✔ Visible on x-small</span>
2580 <div class="col-xs-6 col-sm-3">
2581 <span class="hidden-sm">Small</span>
2582 <span class="visible-sm">✔ Visible on small</span>
2584 <div class="clearfix visible-xs"></div>
2585 <div class="col-xs-6 col-sm-3">
2586 <span class="hidden-md">Medium</span>
2587 <span class="visible-md">✔ Visible on medium</span>
2589 <div class="col-xs-6 col-sm-3">
2590 <span class="hidden-lg">Large</span>
2591 <span class="visible-lg">✔ Visible on large</span>
2594 <div class="row responsive-utilities-test visible-on">
2595 <div class="col-xs-6 col-sm-6">
2596 <span class="hidden-xs hidden-sm">Extra small and small</span>
2597 <span class="visible-xs visible-sm">✔ Visible on x-small and small</span>
2599 <div class="col-xs-6 col-sm-6">
2600 <span class="hidden-md hidden-lg">Medium and large</span>
2601 <span class="visible-md visible-lg">✔ Visible on medium and large</span>
2603 <div class="clearfix visible-xs"></div>
2604 <div class="col-xs-6 col-sm-6">
2605 <span class="hidden-xs hidden-md">Extra small and medium</span>
2606 <span class="visible-xs visible-md">✔ Visible on x-small and medium</span>
2608 <div class="col-xs-6 col-sm-6">
2609 <span class="hidden-sm hidden-lg">Small and large</span>
2610 <span class="visible-sm visible-lg">✔ Visible on small and large</span>
2612 <div class="clearfix visible-xs"></div>
2613 <div class="col-xs-6 col-sm-6">
2614 <span class="hidden-xs hidden-lg">Extra small and large</span>
2615 <span class="visible-xs visible-lg">✔ Visible on x-small and large</span>
2617 <div class="col-xs-6 col-sm-6">
2618 <span class="hidden-sm hidden-md">Small and medium</span>
2619 <span class="visible-sm visible-md">✔ Visible on small and medium</span>
2623 <h3>Hidden on...</h3>
2624 <p>Here, green checkmarks also indicate the element <strong>is hidden</strong> in your current viewport.</p>
2625 <div class="row responsive-utilities-test hidden-on">
2626 <div class="col-xs-6 col-sm-3">
2627 <span class="hidden-xs">Extra small</span>
2628 <span class="visible-xs">✔ Hidden on x-small</span>
2630 <div class="col-xs-6 col-sm-3">
2631 <span class="hidden-sm">Small</span>
2632 <span class="visible-sm">✔ Hidden on small</span>
2634 <div class="clearfix visible-xs"></div>
2635 <div class="col-xs-6 col-sm-3">
2636 <span class="hidden-md">Medium</span>
2637 <span class="visible-md">✔ Hidden on medium</span>
2639 <div class="col-xs-6 col-sm-3">
2640 <span class="hidden-lg">Large</span>
2641 <span class="visible-lg">✔ Hidden on large</span>
2644 <div class="row responsive-utilities-test hidden-on">
2645 <div class="col-xs-6 col-sm-6">
2646 <span class="hidden-xs hidden-sm">Extra small and small</span>
2647 <span class="visible-xs visible-sm">✔ Hidden on x-small and small</span>
2649 <div class="col-xs-6 col-sm-6">
2650 <span class="hidden-md hidden-lg">Medium and large</span>
2651 <span class="visible-md visible-lg">✔ Hidden on medium and large</span>
2653 <div class="clearfix visible-xs"></div>
2654 <div class="col-xs-6 col-sm-6">
2655 <span class="hidden-xs hidden-md">Extra small and medium</span>
2656 <span class="visible-xs visible-md">✔ Hidden on x-small and medium</span>
2658 <div class="col-xs-6 col-sm-6">
2659 <span class="hidden-sm hidden-lg">Small and large</span>
2660 <span class="visible-sm visible-lg">✔ Hidden on small and large</span>
2662 <div class="clearfix visible-xs"></div>
2663 <div class="col-xs-6 col-sm-6">
2664 <span class="hidden-xs hidden-lg">Extra small and large</span>
2665 <span class="visible-xs visible-lg">✔ Hidden on x-small and large</span>
2667 <div class="col-xs-6 col-sm-6">
2668 <span class="hidden-sm hidden-md">Small and medium</span>
2669 <span class="visible-sm visible-md">✔ Hidden on small and medium</span>