base-css.html 53.8 KB
Newer Older
1
2
3
4
5
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Bootstrap, from Twitter</title>
Raul Riera's avatar
Raul Riera committed
6
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
8
9
    <meta name="description" content="">
    <meta name="author" content="">

10
    <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
11
12
13
14
15
    <!--[if lt IE 9]>
      <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->

    <!-- Le styles -->
16
17
    <link href="assets/css/bootstrap.css" rel="stylesheet">
    <link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
18
19
20
21
    <link href="assets/css/docs.css" rel="stylesheet">
    <link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet">

    <!-- Le fav and touch icons -->
Mark Otto's avatar
Mark Otto committed
22
    <link rel="shortcut icon" href="assets/ico/favicon.ico">
Mark Otto's avatar
Mark Otto committed
23
24
25
    <link rel="apple-touch-icon" href="assets/ico/apple-touch-icon.png">
    <link rel="apple-touch-icon" sizes="72x72" href="assets/ico/apple-touch-icon-72x72.png">
    <link rel="apple-touch-icon" sizes="114x114" href="assets/ico/apple-touch-icon-114x114.png">
26
27
  </head>

Jacob Thornton's avatar
Jacob Thornton committed
28
  <body data-spy="scroll" data-target=".subnav" data-offset="50">
29
  
30
  
Jacob Thornton's avatar
Jacob Thornton committed
31
  <!-- Navbar
32
    ================================================== -->
33
    <div class="navbar navbar-fixed-top">
34
35
36
37
      <div class="navbar-inner">
        <div class="container">
          <a class="brand" href="./index.html">Bootstrap</a>
          <ul class="nav">
Jacob Thornton's avatar
Jacob Thornton committed
38
39
40
41
            <li class="">
              <a href="./index.html">Overview</a>
            </li>
            <li class="">
42
              <a href="./scaffolding.html">Scaffolding</a>
43
            </li>
44
45
            <li class="active">
              <a href="./base-css.html">Base CSS</a>
46
            </li>
47
            <li class="">
48
              <a href="./components.html">Components</a>
49
            </li>
Jacob Thornton's avatar
Jacob Thornton committed
50
            <li class="">
51
              <a href="./javascript.html">Javascript plugins</a>
52
            </li>
Jacob Thornton's avatar
Jacob Thornton committed
53
            <li class="">
54
              <a href="./less.html">Using LESS</a>
55
            </li>
56
            <li class="">
Jacob Thornton's avatar
Jacob Thornton committed
57
              <a href="./download.html">Customize</a>
58
            </li>
59
60
61
62
63
64
65
          </ul>
        </div>
      </div>
    </div>

    <div class="container">

66
67
68
69
70
<!-- Masthead
================================================== -->
<header class="jumbotron subhead" id="overview">
  <h1>Base CSS</h1>
  <p class="lead">On top of the scaffolding, basic HTML elements are styled and enhanced with extensible classes to provide a fresh, consistent look and feel.</p>
Mark Otto's avatar
Mark Otto committed
71
72
  <div class="subnav">
    <ul class="nav pills">
73
74
75
76
77
      <li><a href="#typography">Typography</a></li>
      <li><a href="#tables">Tables</a></li>
      <li><a href="#forms">Forms</a></li>
      <li><a href="#buttons">Buttons</a></li>
      <li><a href="#icons">Icons by Glyphicons</a></li>
Mark Otto's avatar
Mark Otto committed
78
79
    </ul>
  </div>
80
</header>
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117


<!-- Typography
================================================== -->
<section id="typography">
  <div class="page-header">
    <h1>Typography <small>Headings, paragraphs, lists, and other inline type elements</small></h1>
  </div>

  <h2>Headings &amp; body copy</h2>

  <!-- Headings & Paragraph Copy -->
  <div class="row">
    <div class="span4">
      <h3>Typographic scale</h3>
      <p>The entire typographic grid is based on two Less variables in our preboot.less file: <code>@baseFontSize</code> and <code>@baseLineHeight</code>. The first is the base font-size used throughout and the second is the base line-height.</p>
      <p>We use those variables, and some math, to create the margins, paddings, and line-heights of all our type and more.</p>
    </div>
    <div class="span4">
      <h3>Example body text</h3>
      <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 ut id elit.</p>
      <p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec sed odio dui.</p>
    </div>
    <div class="span4">
      <div class="well">
        <h1>h1. Heading 1</h1>
        <h2>h2. Heading 2</h2>
        <h3>h3. Heading 3</h3>
        <h4>h4. Heading 4</h4>
        <h5>h5. Heading 5</h5>
        <h6>h6. Heading 6</h6>
      </div>
    </div>
  </div>

  <!-- Misc Elements -->
  <h2>Emphasis, address, and abbreviation</h2>
118
  <table class="table table-bordered table-striped">
119
120
121
122
    <thead>
      <tr>
        <th>Element</th>
        <th>Usage</th>
123
        <th>Optional</th>
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          <code>&lt;strong&gt;</code>
        </td>
        <td>
          For emphasizing a snippet of text with <strong>important</strong>
        </td>
        <td>
          <span class="muted">None</span>
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;em&gt;</code>
        </td>
        <td>
          For emphasizing a snippet of text with <em>stress</em>
        </td>
        <td>
          <span class="muted">None</span>
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;abbr&gt;</code>
        </td>
        <td>
          Wraps abbreviations and acronyms to show the expanded version on hover
        </td>
        <td>
          Include optional <code>title</code> for expanded text
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;address&gt;</code>
        </td>
        <td>
          For contact information for its nearest ancestor or the entire body of work
        </td>
        <td>
          Preserve formatting by ending all lines with <code>&lt;br&gt;</code>
        </td>
      </tr>
    </tbody>
  </table>

  <div class="row">
    <div class="span4">
      <h3>Using emphasis</h3>
      <p><a href="#">Fusce dapibus</a>, <strong>tellus ac cursus commodo</strong>, <em>tortor mauris condimentum nibh</em>, ut fermentum massa justo sit amet risus. Maecenas faucibus mollis interdum. Nulla vitae elit libero, a pharetra augue.</p>
      <p><strong>Note:</strong> Feel free to use <code>&lt;b&gt;</code> and <code>&lt;i&gt;</code> in HTML5, but their usage has changed a bit. <code>&lt;b&gt;</code> is meant to highlight words or phrases without conveying additional importance while <code>&lt;i&gt;</code> is mostly for voice, technical terms, etc.</p>
    </div>
    <div class="span4">
      <h3>Example addresses</h3>
      <p>Here are two examples of how the <code>&lt;address&gt;</code> tag can be used:</p>
      <address>
        <strong>Twitter, Inc.</strong><br>
        795 Folsom Ave, Suite 600<br>
        San Francisco, CA 94107<br>
        <abbr title="Phone">P:</abbr> (123) 456-7890
      </address>
      <address>
        <strong>Full Name</strong><br>
Mark Otto's avatar
Mark Otto committed
191
        <a href="mailto:#">first.last@gmail.com</a>
192
193
194
195
196
197
198
199
200
201
202
203
204
      </address>
    </div>
    <div class="span4">
      <h3>Example abbreviations</h3>
      <p>Abbreviations are styled with uppercase text and a light dotted bottom border. They also have a help cursor on hover so users have extra indication something will be shown on hover.</p>
      <p><abbr title="HyperText Markup Language">HTML</abbr> is the best thing since sliced bread.</p>
      <p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
    </div>
  </div>


  <!-- Blockquotes -->
  <h2>Blockquotes</h2>
205
  <table class="table table-bordered table-striped">
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
    <thead>
      <tr>
        <th>Element</th>
        <th>Usage</th>
        <th>Optional</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          <code>&lt;blockquote&gt;</code>
        </td>
        <td>
          Block-level element for quoting content from another source
        </td>
        <td>
          <p>Add <code>cite</code> attribute for source URL</p>
          Use <code>.pull-left</code> and <code>.pull-right</code> classes for floated options
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;small&gt;</code>
        </td>
        <td>
          Optional element for adding a user-facing citation, typically an author with title of work
        </td>
        <td>
          Place the <code>&lt;cite&gt;</code> around the title or name of source
        </td>
      </tr>
    </tbody>
  </table>
239
  <div class="row">
240
241
242
    <div class="span4">
      <p>To include a blockquote, wrap <code>&lt;blockquote&gt;</code> around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote. For straight quotes we recommend a <code>&lt;p&gt;</code>.</p>
      <p>Include an optional <code>&lt;small&gt;</code> element to cite your source and you'll get an em dash <code>&amp;mdash;</code> before it for styling purposes.</p>
243
    </div>
244
    <div class="span8">
245
246
<pre class="prettyprint linenums">
&lt;blockquote&gt;
247
248
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.&lt;/p&gt;
  &lt;small&gt;Someone famous&lt;/small&gt;
249
250
251
&lt;/blockquote&gt;
</pre>
    </div>
252
253
254
255
256
  </div><!--/row-->

  <h3>Example blockquotes</h3>
  <div class="row">
    <div class="span6">
257
      <p>Default blockquotes are styled as such:</p>
258
259
      <blockquote>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
260
        <small>Someone famous in <cite title="">Body of work</cite></small>
261
262
263
      </blockquote>
    </div>
    <div class="span6">
264
      <p>To float your blockquote to the right, add <code>class="pull-right"</code>:</p>
265
266
      <blockquote class="pull-right">
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
267
        <small>Someone famous in <cite title="">Body of work</cite></small>
268
269
      </blockquote>
    </div>
270
271
  </div>

272

273
274
275
276
  <!-- Lists -->
  <h2>Lists</h2>
  <div class="row">
    <div class="span3">
277
278
      <h4>Unordered</h4>
      <p><code>&lt;ul&gt;</code></p>
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
      <ul>
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit
          <ul>
            <li>Phasellus iaculis neque</li>
            <li>Purus sodales ultricies</li>
            <li>Vestibulum laoreet porttitor sem</li>
            <li>Ac tristique libero volutpat at</li>
          </ul>
        </li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ul>
    </div>
    <div class="span3">
298
299
      <h4>Unstyled</h4>
      <p><code>&lt;ul class="unstyled"&gt;</code></p>
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
      <ul class="unstyled">
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit
          <ul>
            <li>Phasellus iaculis neque</li>
            <li>Purus sodales ultricies</li>
            <li>Vestibulum laoreet porttitor sem</li>
            <li>Ac tristique libero volutpat at</li>
          </ul>
        </li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ul>
    </div>
    <div class="span3">
319
320
      <h4>Ordered</h4>
      <p><code>&lt;ol&gt;</code></p>
321
322
323
324
325
326
327
328
329
330
331
332
      <ol>
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit</li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ol>
    </div>
    <div class="span3">
333
334
      <h4>Description</h4>
      <p><code>&lt;dl&gt;</code></p>
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
      <dl>
        <dt>Description lists</dt>
        <dd>A description list is perfect for defining terms.</dd>
        <dt>Euismod</dt>
        <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
        <dd>Donec id elit non mi porta gravida at eget metus.</dd>
        <dt>Malesuada porta</dt>
        <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
      </dl>
    </div>
  </div><!-- /row -->


  <!-- Code -->

  <h2>Code <small>Inline and block</small></h2>
351
  <table class="table table-bordered table-striped">
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
    <thead>
      <tr>
        <th style="width: 190px;">Element</th>
        <th>Result</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td><code>&lt;code&gt;</code></td>
        <td>In a line of text like this, your wrapped code will look like this <code>&lt;html&gt;</code> element.</td>
      </tr>
      <tr>
        <td><code>&lt;pre&gt;</code></td>
        <td>
<pre>&lt;div&gt;
  &lt;h1&gt;Heading&lt;/h1&gt;
Jacob Thornton's avatar
Jacob Thornton committed
368
  &lt;p&gt;Something right here…&lt;/p&gt;
369
&lt;/div&gt;</pre>
370
          <p><strong>Note:</strong> Be sure to keep code within <code>&lt;pre&gt;</code> tags as close to the left as possible; it will render all tabs.</p>
371
372
373
374
375
        </td>
      </tr>
      <tr>
        <td><code>&lt;pre class="prettyprint"&gt;</code></td>
        <td>
376
          <p>Using the google-code-prettify library, your blocks of code get a slightly different visual style and automatic syntax highlighting. You can also add an additional class to add line numbers.</p>
377
378
<pre class="prettyprint">&lt;div&gt;
  &lt;h1&gt;Heading&lt;/h1&gt;
Jacob Thornton's avatar
Jacob Thornton committed
379
  &lt;p&gt;Something right here…&lt;/p&gt;
380
381
382
&lt;/div&gt;</pre>
<pre class="prettyprint linenums">&lt;div&gt;
  &lt;h1&gt;Heading&lt;/h1&gt;
Jacob Thornton's avatar
Jacob Thornton committed
383
  &lt;p&gt;Something right here…&lt;/p&gt;
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
&lt;/div&gt;</pre>
          <p><a href="http://code.google.com/p/google-code-prettify/">Download google-code-prettify</a> and view the readme for <a href="http://google-code-prettify.googlecode.com/svn/trunk/README.html">how to use</a>.</p>
        </td>
      </tr>
    </tbody>
  </table>

</section>



<!-- Tables
================================================== -->
<section id="tables">
  <div class="page-header">
    <h1>Tables <small>For, you guessed it, tabular data</small></h1>
  </div>

  <h2>Table markup</h2>
  <div class="row">
    <div class="span8">
405
      <table class="table table-bordered table-striped">
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
        <thead>
          <tr>
            <th>Tag</th>
            <th>Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>
              <code>&lt;table&gt;</code>
            </td>
            <td>
              Wrapping element for displaying data in a tabular format
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;thead&gt;</code>
            </td>
            <td>
              Container element for table header rows (<code>&lt;tr&gt;</code>) to label table columns
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;tbody&gt;</code>
            </td>
            <td>
              Container element for table rows (<code>&lt;tr&gt;</code>) in the body of the table
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;tr&gt;</code>
            </td>
            <td>
              Container element for a set of table cells (<code>&lt;td&gt;</code> or <code>&lt;th&gt;</code>) that appears on a single row
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;td&gt;</code>
            </td>
            <td>
              Default table cell
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;th&gt;</code>
            </td>
            <td>
              Special table cell for column (or row, depending on scope and placement) labels<br>
              Must be used within a <code>&lt;thead&gt;</code>
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;caption&gt;</code>
            </td>
            <td>
              Description or summary of what the table holds, especially useful for screen readers
            </td>
          </tr>
        </tbody>
      </table>
    </div>
    <div class="span4">
<pre class="prettyprint linenums">
&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
Jacob Thornton's avatar
Jacob Thornton committed
478
479
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;&lt;/th&gt;
480
481
482
483
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
Jacob Thornton's avatar
Jacob Thornton committed
484
485
      &lt;td&gt;&lt;/td&gt;
      &lt;td&gt;&lt;/td&gt;
486
487
488
489
490
491
492
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
</pre>
    </div>
  </div>

493
  <h2>Table options</h2>
494
  <table class="table table-bordered table-striped">
495
  <thead>
496
497
498
499
500
501
502
503
504
505
      <tr>
        <th>Name</th>
        <th>Class</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Default</td>
        <td class="muted">None</td>
506
507
508
509
510
511
512
        <td>No styles, just columns and rows</td>
      </tr>
      <tr>
        <td>Basic</td>
        <td>
          <code>.table</code>
        </td>
513
514
515
516
517
        <td>Only horizontal lines between rows</td>
      </tr>
      <tr>
        <td>Bordered</td>
        <td>
518
          <code>.table-bordered</code>
519
520
521
522
523
524
        </td>
        <td>Rounds corners and adds outter border</td>
      </tr>
      <tr>
        <td>Zebra-stripe</td>
        <td>
525
          <code>.table-striped</code>
526
527
528
529
530
531
        </td>
        <td>Adds light gray background color to odd rows (1, 3, 5, etc)</td>
      </tr>
      <tr>
        <td>Condensed</td>
        <td>
532
          <code>.table-condensed</code>
533
        </td>
534
        <td>Cuts vertical padding in half, from 8px to 4px, within all <code>td</code> and <code>th</code> elements</td>
535
536
537
538
      </tr>
    </tbody>
  </table>

Mark Otto's avatar
Mark Otto committed
539

540
  <h2>Example tables</h2>
Mark Otto's avatar
Mark Otto committed
541

542
  <h3>1. Default table styles</h3>
Mark Otto's avatar
Mark Otto committed
543
544
  <div class="row">
    <div class="span4">
545
      <p>Tables are automatically styled with only a few borders to ensure readability and maintain structure. With 2.0, the <code>.table</code> class is required.</p>
546
<pre class="prettyprint linenums">
547
&lt;table class="table"&gt;
Jacob Thornton's avatar
Jacob Thornton committed
548

549
&lt;/table&gt;</pre>
Mark Otto's avatar
Mark Otto committed
550
551
    </div>
    <div class="span8">
552
      <table class="table">
Mark Otto's avatar
Mark Otto committed
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
        <thead>
          <tr>
            <th>#</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Language</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
584
585


586
  <h3>2. Striped table</h3>
Mark Otto's avatar
Mark Otto committed
587
588
  <div class="row">
    <div class="span4">
589
      <p>Get a little fancy with your tables by adding zebra-striping&mdash;just add the <code>.table-striped</code> class.</p>
Mark Otto's avatar
Mark Otto committed
590
591
      <p class="muted"><strong>Note:</strong> Sprited tables use the <code>:nth-child</code> CSS selector and is not available in IE7-IE8.</p>
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
592
&lt;table class="table table-striped"&gt;
Jacob Thornton's avatar
Jacob Thornton committed
593

594
&lt;/table&gt;</pre>
Mark Otto's avatar
Mark Otto committed
595
596
    </div>
    <div class="span8">
597
      <table class="table table-striped">
Mark Otto's avatar
Mark Otto committed
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
        <thead>
          <tr>
            <th>#</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Language</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
629
630


631
  <h3>3. Bordered table</h3>
Mark Otto's avatar
Mark Otto committed
632
633
634
  <div class="row">
    <div class="span4">
      <p>Add borders around the entire table and rounded corners for aesthetic purposes.</p>
635
<pre class="prettyprint linenums">
636
&lt;table class="table table-bordered"&gt;
Jacob Thornton's avatar
Jacob Thornton committed
637

638
&lt;/table&gt;</pre>
Mark Otto's avatar
Mark Otto committed
639
640
    </div>
    <div class="span8">
641
      <table class="table table-bordered">
Mark Otto's avatar
Mark Otto committed
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
        <thead>
          <tr>
            <th>#</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Language</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td colspan="2">Mark Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td rowspan="2">Javascript</td>
          </tr>
          </tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Brosef</td>
            <td>Stalin</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
677
678


679
  <h3>4. Condensed table</h3>
Mark Otto's avatar
Mark Otto committed
680
681
  <div class="row">
    <div class="span4">
Jacob Thornton's avatar
Jacob Thornton committed
682
      <p>Make your tables more compact by adding the <code>.table-condensed</code> class to cut table cell padding in half (from 8px to 4px).</p>
Mark Otto's avatar
Mark Otto committed
683
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
684
&lt;table class="table table-condensed"&gt;
Jacob Thornton's avatar
Jacob Thornton committed
685

Jon Stevens's avatar
Jon Stevens committed
686
&lt;/table&gt;</pre>
Mark Otto's avatar
Mark Otto committed
687
688
    </div>
    <div class="span8">
689
      <table class="table table-condensed">
Mark Otto's avatar
Mark Otto committed
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
        <thead>
          <tr>
            <th>#</th>
            <th>First Name</th>
            <th>Last Name</th>
            <th>Language</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>

722
723


Mark Otto's avatar
Mark Otto committed
724
  <h3>5. Combine them all!</h3>
Mark Otto's avatar
Mark Otto committed
725
726
  <div class="row">
    <div class="span4">
Mark Otto's avatar
Mark Otto committed
727
728
729
730
      <p>Feel free to combine any of the table classes to achieve different looks by utilizing any of the available classes.</p>
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
&lt;table class="table table-striped table-bordered table-condensed"&gt;
  ...
731
&lt;/table&gt;</pre>
Mark Otto's avatar
Mark Otto committed
732
733
    </div>
    <div class="span8">
Mark Otto's avatar
Mark Otto committed
734
      <table class="table table-striped table-bordered table-condensed">
Mark Otto's avatar
Mark Otto committed
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
        <thead>
          <tr>
            <th>#</th>
            <th class="yellow">First Name</th>
            <th class="blue">Last Name</th>
            <th class="green">Language</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Brosef</td>
            <td>Stalin</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
772
773
774
775
776
777
778
779
780
781
</section>



<!-- Forms
================================================== -->
<section id="forms">
  <div class="page-header">
    <h1>Forms</h1>
  </div>
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
  <div class="row">
    <div class="span4">
      <h2>Flexible HTML and CSS</h2>
      <p>The best part about forms in Bootstrap is that all your inputs and controls look great no matter how you build them in your markup. No superfluous HTML is required, but we provide the patterns for those who require it.</p>
      <p>More complicated layouts come with succinct and scalable classes for easy styling and event binding, so you're covered at every step.</p>
    </div>
    <div class="span4">
      <h2>Four layouts included</h2>
      <p>Bootstrap comes with support for four types of form layouts:</p>
      <ul>
        <li>Vertical (default)</li>
        <li>Search</li>
        <li>Inline</li>
        <li>Horizontal</li>
      </ul>
      <p>Different types of form layouts require some changes to markup, but the controls themselves remain and behave the same.</p>
    </div>
    <div class="span4">
      <h2>Control states and more</h2>
      <p>Bootstrap's forms include styles for all the base form controls like input, textarea, and select you'd expect. But it also comes with a number of custom components like appended and prepended inputs and support for lists of checkboxes.</p>
      <p>States like error, warning, and success are included for each type of form control. Also included are styles for disabled controls.</p>
    </div>
804
  </div>
805

806
  <h2>Four types of forms</h2>
807
  <p>Bootstrap provides simple markup and styles for four styles of common web forms.</p>
808
  <table class="table table-bordered table-striped">
809
810
811
812
813
814
815
816
817
818
    <thead>
      <tr>
        <th>Name</th>
        <th>Class</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th>Vertical (default)</th>
819
        <td><code>.form-vertical</code> <span class="muted">(not required)</span></td>
820
821
822
        <td>Stacked, left-aligned labels over controls</td>
      </tr>
      <tr>
823
        <th>Horizontal</th>
824
        <td><code>.form-horizontal</code></td>
825
826
827
828
        <td>Float left, right-aligned labels on same line as controls</td>
      </tr>
      <tr>
        <th>Inline</th>
829
        <td><code>.form-inline</code></td>
830
831
832
833
        <td>Left-aligned label and inline-block controls for compact style</td>
      </tr>
      <tr>
        <th>Search</th>
834
        <td><code>.form-search</code></td>
835
836
837
838
839
840
        <td>Extra-rounded text input for a typical search aesthetic</td>
      </tr>
    </tbody>
  </table>


841
  <h2>Example forms <small>using just form controls, no extra markup</small></h2>
842
  <h3>Basic form</h3>
843
  <div class="row">
844
    <div class="span3">
845
      <p>With v2.0, we have lighter and smarter defaults for form styles. No extra markup, just form controls.</p>
846
847
    </div>
    <div class="span9">
848
849
      <form class="well">
        <label>Label name</label>
850
        <input type="text" class="span3" placeholder="Type something…"> <span class="help-inline">Associated help text!</span>
851
852
853
854
855
        <label class="checkbox">
          <input type="checkbox"> Check me out
        </label>
        <button type="submit" class="btn">Submit</button>
      </form>
856
    </div>
857
858
859
860
  </div> <!-- /row -->
  <h3>Search form</h3>
  <div class="row">
    <div class="span3">
861
      <p>Reflecting default WebKit styles, just add <code>.form-search</code> for extra rounded search fields.</p>
862
863
    </div>
    <div class="span9">
864
      <form class="well form-search">
865
866
867
        <input type="text" class="input-medium search-query">
        <button type="submit" class="btn">Search</button>
      </form>
868
    </div>
869
870
871
872
  </div> <!-- /row -->
  <h3>Inline form</h3>
  <div class="row">
    <div class="span3">
873
      <p>Inputs are block level to start. For <code>.form-inline</code> and <code>.form-horizontal</code>, we use inline-block.</p>
874
875
    </div>
    <div class="span9">
876
      <form class="well form-search">
877
878
879
880
        <input type="text" class="input-small" placeholder="Email">
        <input type="password" class="input-small" placeholder="Password">
        <button type="submit" class="btn">Go</button>
      </form>
881
882
    </div>
  </div><!-- /row -->
883
884
885
886

  <br>

  <h2>Horizontal forms</h2>
887
  <div class="row">
888
    <div class="span8">
889
      <form class="form-horizontal">
890
891
892
893
894
        <fieldset>
          <legend>Controls Bootstrap supports</legend>
          <div class="control-group">
            <label class="control-label" for="input01">Text input</label>
            <div class="controls">
895
              <input type="text" class="input-xlarge" id="input01">
896
897
              <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p>
            </div>
898
          </div>
899
900
901
902
          <div class="control-group">
            <label class="control-label" for="optionsCheckbox">Checkbox</label>
            <div class="controls">
              <label class="checkbox">
903
                <input type="checkbox" id="optionsCheckbox" value="option1">
904
905
906
                Option one is this and that&mdash;be sure to include why it’s great
              </label>
            </div>
907
          </div>
908
909
910
          <div class="control-group">
            <label class="control-label" for="select01">Select list</label>
            <div class="controls">
911
              <select id="select01">
Mark Otto's avatar
Mark Otto committed
912
                <option>something</option>
913
914
915
916
917
918
                <option>2</option>
                <option>3</option>
                <option>4</option>
                <option>5</option>
              </select>
            </div>
919
          </div>
920
921
922
          <div class="control-group">
            <label class="control-label" for="multiSelect">Multi-select</label>
            <div class="controls">
923
              <select multiple="multiple" id="multiSelect">
924
925
926
927
928
929
930
                <option>1</option>
                <option>2</option>
                <option>3</option>
                <option>4</option>
                <option>5</option>
              </select>
            </div>
931
          </div>
932
933
934
          <div class="control-group">
            <label class="control-label" for="fileInput">File input</label>
            <div class="controls">
935
              <input class="input-file" id="fileInput" type="file">
936
            </div>
937
          </div>
938
939
940
          <div class="control-group">
            <label class="control-label" for="textarea">Textarea</label>
            <div class="controls">
941
              <textarea class="input-xlarge" id="textarea" rows="3"></textarea>
942
            </div>
943
          </div>
944
945
946
947
948
          <div class="form-actions">
            <button type="submit" class="btn primary">Save changes</button>
            <button type="reset" class="btn">Cancel</button>
          </div>
        </fieldset>
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
      </form>
    </div>
    <div class="span4">
      <div class="form-docs">
        <h3>What's included</h3>
        <p>Shown on the left are all the default form controls we support. Here's the bulleted list:</p>
        <ul>
          <li>text inputs (text, password, email, etc)</li>
          <li>checkbox</li>
          <li>radio</li>
          <li>select</li>
          <li>multiple select</li>
          <li>file input</li>
          <li>textarea</li>
        </ul>
        <hr>
        <h3>New defaults with v2.0</h3>
        <p>Up to v1.4, Bootstrap's default form styles used the horizontal layout. With Bootstrap 2, we removed that constraint to have smarter, more scalable defaults for any form.</p>
      </div>
    </div>
  </div>

  <br>

  <div class="row">
    <div class="span8">
975
      <form class="form-horizontal">
976
977
978
979
980
        <fieldset>
          <legend>Form control states</legend>
          <div class="control-group">
            <label class="control-label" for="focusedInput">Focused input</label>
            <div class="controls">
981
              <input class="input-xlarge focused" id="focusedInput" type="text" value="This is focused…">
982
            </div>
983
          </div>
Pete Hopkins's avatar
Pete Hopkins committed
984
985
986
987
988
989
          <div class="control-group">
            <label class="control-label">Uneditable input</label>
            <div class="controls">
              <span class="input-xlarge uneditable-input">Some value here</span>
            </div>
          </div>
990
991
992
          <div class="control-group">
            <label class="control-label" for="disabledInput">Disabled input</label>
            <div class="controls">
993
              <input class="input-xlarge disabled" id="disabledInput" type="text" placeholder="Disabled input here…" disabled>
994
            </div>
995
          </div>
996
          <div class="control-group">
997
            <label class="control-label" for="optionsCheckbox2">Disabled checkbox</label>
998
999
            <div class="controls">
              <label class="checkbox">
1000
                <input type="checkbox" id="optionsCheckbox2" value="option1" disabled>
For faster browsing, not all history is shown. View entire blame