forked from isensen/Bootstrap_zh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase-css.html
1688 lines (1619 loc) · 63.8 KB
/
base-css.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
118
119
120
121
122
123
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
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
629
630
631
632
633
634
635
636
637
638
639
640
641
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
677
678
679
680
681
682
683
684
685
686
687
688
689
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
722
723
724
725
726
727
728
729
730
731
732
733
734
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
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<title>基本CSS UI元素 · Twitter Bootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="assets/css/docs.css" rel="stylesheet">
<link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
</head>
<body data-spy="scroll" data-target=".subnav" data-offset="50">
<!-- Navbar
================================================== -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="./index.html">Bootstrap</a>
<div class="nav-collapse">
<ul class="nav">
<li class="">
<a href="./index.html">总述</a>
</li>
<li class="">
<a href="./scaffolding.html">流动布局框架</a>
</li>
<li class="active">
<a href="./base-css.html">基本CSS UI元素</a>
</li>
<li class="">
<a href="./components.html">UI部件</a>
</li>
<li class="">
<a href="./javascript.html">Javascript UI库</a>
</li>
<li class="">
<a href="./less.html">在Bootstrap中应用LESS</a>
</li>
<li class="divider-vertical"></li>
<li class="">
<a href="./download.html">自定义框架</a>
</li>
<li class="">
<a href="./examples.html">快速案例</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<!-- Masthead
================================================== -->
<header class="jumbotron subhead" id="overview">
<h1>基本CSS UI元素</h1>
<p class="lead">在流动布局框架一节,基本HTML元素已经被样式化并且通过CSS类被扩展,以用来提供始终如一的外观。</p>
<div class="subnav">
<ul class="nav nav-pills">
<li><a href="#typography">排版</a></li>
<li><a href="#code">CSS代码</a></li>
<li><a href="#tables">表格</a></li>
<li><a href="#forms">表单</a></li>
<li><a href="#buttons">按钮</a></li>
<li><a href="#icons">图标</a></li>
</ul>
</div>
</header>
<!-- Typography
================================================== -->
<section id="typography">
<div class="page-header">
<h1>字体排版 <small>标题,段落,列表,等一些行内元素</small></h1>
</div>
<h2>标题 & 正文</h2>
<!-- Headings & Paragraph Copy -->
<div class="row">
<div class="span4">
<h3>排版缩放</h3>
<p>整个文字排版系统是根据两个在variables.less中的两个变量<code>@baseFontSize</code> 和 <code>@baseLineHeight</code>,第一个变量始终用于定义字体大小,第二个变量定义了基准的行高。</p>
<p>我们使用这些变量,通过一些运算来创建各种各样的外边距,内边距,行高。</p>
</div>
<div class="span4">
<h3>正文示例</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>强调,地址,缩写</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Element</th>
<th>Usage</th>
<th>Optional</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code><strong></code>
</td>
<td>
通过<strong>加粗</strong>强调文本
</td>
<td>
<span class="muted">None</span>
</td>
</tr>
<tr>
<td>
<code><em></code>
</td>
<td>
通过<em>倾斜</em>强调文本
</td>
<td>
<span class="muted">None</span>
</td>
</tr>
<tr>
<td>
<code><abbr></code>
</td>
<td>
包含缩略词并在hover状态显示完整词
</td>
<td>
<p>添加<code>title</code>属性来展示完整文本</p>
使用<code>.initialism</code>类来添加为大写缩略词
</td>
</tr>
<tr>
<td>
<code><address></code>
</td>
<td>
For contact information for its nearest ancestor or the entire body of work
</td>
<td>
为保护格式所有的地址行会添加<code><br></code>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="span4">
<h3>U使用强调</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>提示:</strong>在HTML中<code><b></code><code><i></code>的用法有点不一样。<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>
</div>
<div class="span4">
<h3>地址 例子</h3>
<p>这有两个例子展示<code><address></code>标签如何被使用:</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>
<a href="mailto:#">[email protected]</a>
</address>
</div>
<div class="span4">
<h3>缩略词 例子</h3>
<p>带有<code>title</code>属性的缩略词会被显示成有点状下划线的,在hover状态下有帮助提示的形态。</p>
<p>在加入了<code>initialism</code>类后,这个缩略词会比其正常状态略微小一点。 to an abbreviation to increase typographic harmony by giving it a slightly smaller text size.</p>
<p><abbr title="HyperText Markup Language" class="initialism">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>引用</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>元素Element</th>
<th>用法</th>
<th>选项</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code><blockquote></code>
</td>
<td>
一个用来引入内容的块级别元素
</td>
<td>
<p>添加<code>cite</code>属性来指向URL</p>
使用<code>.pull-left</code>和<code>.pull-right</code>类作为浮动方向的选项
</td>
</tr>
<tr>
<td>
<code><small></code>
</td>
<td>
这是用来显示出引用块的作者是谁的元素
</td>
<td>
Place the <code><cite></code> around the title or name of source
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="span4">
<p>将<code><blockquote></code>包裹在其他标签外可以直接创建一个引用。
<p>添加了可选的<code><small></code>元素后,它会在前面产生一个1em长度<code>&mdash;</code>破折号在前面作为装饰用。</p>
</div>
<div class="span8">
<pre class="prettyprint linenums">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
<small>Someone famous</small>
</blockquote>
</pre>
</div>
</div><!--/row-->
<h3>引用 例子</h3>
<div class="row">
<div class="span6">
<p>默认的引用块会是这个样子</p>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
<small>Someone famous in <cite title="">Body of work</cite></small>
</blockquote>
</div>
<div class="span6">
<p>要将应用块向右浮动,添加<code>class="pull-right"</code>:</p>
<blockquote class="pull-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
<small>Someone famous in <cite title="">Body of work</cite></small>
</blockquote>
</div>
</div>
<!-- Lists -->
<h2>列表</h2>
<div class="row">
<div class="span4">
<h3>无序列表</h3>
<p><code><ul></code></p>
<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="span4">
<h3>无格式列表</h3>
<p><code><ul class="unstyled"></code></p>
<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="span4">
<h3>有序列表</h3>
<p><code><ol></code></p>
<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><!-- /row -->
<br>
<div class="row">
<div class="span4">
<h3>描述</h3>
<p><code><dl></code></p>
<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 class="span8">
<h3>同一水平线上的描述</h3>
<p><code><dl class="dl-horizontal"></code></p>
<dl class="dl-horizontal">
<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 -->
</section>
<!-- Code
================================================== -->
<section id="code">
<div class="page-header">
<h1>代码块 <small>行内代码块与块级代码块</small></h1>
</div>
<div class="row">
<div class="span4">
<h2>行内代码块</h2>
<p>将代码片段用<code><code></code>元素包裹即可。</p>
<pre class="prettyprint linenums">
For example, <code>section</code> should be wrapped as inline.
</pre>
</div><!--/span-->
<div class="span4">
<h2>基本代码块</h2>
<p>将代码块用<code><pre></code>元素包裹即为多行代码块。 Be sure to escape any angle brackets in the code for proper rendering.</p>
<pre>
<p>Sample text here...</p>
</pre>
<pre class="prettyprint linenums" style="margin-bottom: 9px;">
<pre>
&lt;p&gt;Sample text here...&lt;/p&gt;
</pre>
</pre>
<p><strong>Note:</strong> Be sure to keep code within <code><pre></code> tags as close to the left as possible; it will render all tabs.</p>
<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>
</div><!--/span-->
<div class="span4">
<h2>Google Prettify</h2>
<p>Take the same <code><pre></code> element and add two optional classes for enhanced rendering.</p>
<pre class="prettyprint linenums" style="margin-bottom: 9px;">
<p>Sample text here...</p>
</pre>
<pre class="prettyprint linenums" style="margin-bottom: 9px;">
<pre class="prettyprint
linenums">
&lt;p&gt;Sample text here...&lt;/p&gt;
</pre>
</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>
</div><!--/span-->
</div><!--/row-->
</section>
<!-- Tables
================================================== -->
<section id="tables">
<div class="page-header">
<h1>表格 <small>将数据表格化展示</small></h1>
</div>
<h2>表格标记</h2>
<div class="row">
<div class="span8">
<table class="table table-bordered table-striped">
<colgroup>
<col class="span1">
<col class="span7">
</colgroup>
<thead>
<tr>
<th>标签</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code><table></code>
</td>
<td>
将元素作为表格显示
</td>
</tr>
<tr>
<td>
<code><thead></code>
</td>
<td>
Container element for table header rows (<code><tr></code>) to label table columns
</td>
</tr>
<tr>
<td>
<code><tbody></code>
</td>
<td>
Container element for table rows (<code><tr></code>) in the body of the table
</td>
</tr>
<tr>
<td>
<code><tr></code>
</td>
<td>
Container element for a set of table cells (<code><td></code> or <code><th></code>) that appears on a single row
</td>
</tr>
<tr>
<td>
<code><td></code>
</td>
<td>
Default table cell
</td>
</tr>
<tr>
<td>
<code><th></code>
</td>
<td>
Special table cell for column (or row, depending on scope and placement) labels<br>
Must be used within a <code><thead></code>
</td>
</tr>
<tr>
<td>
<code><caption></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">
<table>
<thead>
<tr>
<th>…</th>
<th>…</th>
</tr>
</thead>
<tbody>
<tr>
<td>…</td>
<td>…</td>
</tr>
</tbody>
</table>
</pre>
</div>
</div>
<h2>表格选项</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>CSS类</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>默认</td>
<td class="muted">None</td>
<td>没有格式,只有列和行</td>
</tr>
<tr>
<td>基本</td>
<td>
<code>.table</code>
</td>
<td>在每一行之间仅仅有水平线</td>
</tr>
<tr>
<td>有边框</td>
<td>
<code>.table-bordered</code>
</td>
<td>四个圆角并且有外部的边框</td>
</tr>
<tr>
<td>Zebra-stripe</td>
<td>
<code>.table-striped</code>
</td>
<td>在每个奇数行上添加淡灰色的背景颜色</td>
</tr>
<tr>
<td>Condensed</td>
<td>
<code>.table-condensed</code>
</td>
<td>Cuts vertical padding in half, from 8px to 4px, within all <code>td</code> and <code>th</code> elements</td>
</tr>
</tbody>
</table>
<h2>表格例子</h2>
<h3>默认表格格式</h3>
<div class="row">
<div class="span4">
<p>以确保可读性并且维持结构,表格会自动的格式成仅有几个边框的。With 2.0, the <code>.table</code> class is required.</p>
<pre class="prettyprint linenums">
<table class="table">
…
</table></pre>
</div>
<div class="span8">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3>2. Striped table</h3>
<div class="row">
<div class="span4">
<p>Get a little fancy with your tables by adding zebra-striping—just add the <code>.table-striped</code> class.</p>
<p class="muted"><strong>提示:</strong>条纹表格使用<code>:nth-child</code> CSS 选择器所以在IE7-IE8不可用。</p>
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
<table class="table table-striped">
…
</table></pre>
</div>
<div class="span8">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3>3. 有边框</h3>
<div class="row">
<div class="span4">
<p>所有的单元格被边框包围,并且有圆角。</p>
<pre class="prettyprint linenums">
<table class="table table-bordered">
…
</table></pre>
</div>
<div class="span8">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@TwBootstrap</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3>4. 紧凑的表格样式</h3>
<div class="row">
<div class="span4">
<p>为了使表格更加紧凑,可以添加<code>.table-condensed</code>类。这会使表格内的单元格内边距缩减一半(从8像素到4像素)。</p>
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
<table class="table table-condensed">
…
</table></pre>
</div>
<div class="span8">
<table class="table table-condensed">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3>5.将多种格式合并到一个表格上</h3>
<div class="row">
<div class="span4">
<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;">
<table class="table table-striped table-bordered table-condensed">
...
</table></pre>
</div>
<div class="span8">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th></th>
<th colspan="2">Full name</th>
<th></th>
</tr>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Forms
================================================== -->
<section id="forms">
<div class="page-header">
<h1>表单</h1>
</div>
<div class="row">
<div class="span4">
<h2>灵活的的 HTML 和 CSS</h2>
<p>Bootstrap中的表单独到之处是,无论表单元素在 HTML 上有多复杂,它们最终的效果都非常好。无需其他的 HTML 元素,使用一些内建的格式应用在其中即可。</p>
<p>更加复杂的布局由简洁的代码和可增改的CSS类完成,这使得表单更易于添加样式并且绑定事件,在构建表单的一开始就是这样。</p>
</div>
<div class="span4">
<h2>四种表单元素的布局</h2>
<p>Bootstrap内建提供了四种类型的布局:</p>
<ul>
<li>垂直布局(默认)</li>
<li>搜索</li>
<li>行内</li>
<li>水平布局</li>
</ul>
<p>不同类型的表单布局在HTML上仅仅有一点不同,但是使用 JS 操控它们的行为确实一样的。</p>
</div>
<div class="span4">
<h2>控制表单样式</h2>
<p>Bootstrap的表单已经内建了所有的表单元素的样式,不过还有一些自定义的组件可以添加在其中。</p>
<p>像 error, warning, and success这些状态已经被添加在表单控制中,还有 disabled 状态的控制。</p>
</div>
</div>
<h2>四种表单布局格式</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>CSS 类</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<th>垂直(默认)</th>
<td><code>.form-vertical</code> <span class="muted">(not required)</span></td>
<td>垂直放置,左对齐的表单标签在最上面</td>
</tr>
<tr>
<th>行内布局</th>
<td><code>.form-inline</code></td>
<td>Left-aligned label and inline-block controls for compact style</td>
</tr>
<tr>
<th>搜索布局</th>
<td><code>.form-search</code></td>
<td>Extra-rounded text input for a typical search aesthetic</td>
</tr>
<tr>
<th>水平布局</th>
<td><code>.form-horizontal</code></td>
<td>Float left, right-aligned labels on same line as controls</td>
</tr>
</tbody>
</table>
<h2>表单 例子 <small>没有额外的标记</small></h2>
<div class="row">
<div class="span3">
<h3>基本表单</h3>
<p>从BootstrapV2.0开始,表单更简洁,更智能,没有额外的标记。</p>
</div>
<div class="span9">
<form class="well">
<label>Label name</label>
<input type="text" class="span3" placeholder="Type something…"> <span class="help-inline">Associated help text!</span>
<p class="help-block">Example block-level help text here.</p>
<label class="checkbox">
<input type="checkbox"> Check me out
</label>
<button type="submit" class="btn">Submit</button>
</form>
<pre class="prettyprint linenums">
<form class="well">
<label>Label name</label>
<input type="text" class="span3" placeholder="Type something…">
<span class="help-inline">Associated help text!</span>
<label class="checkbox">
<input type="checkbox"> Check me out
</label>
<button type="submit" class="btn">Submit</button>
</form>
</pre>
</div>
</div> <!-- /row -->
<div class="row">
<div class="span3">
<h3>搜索表单</h3>
<p>仅仅添加了<code>.form-search</code>类以添加圆角输入框。</p>
</div>
<div class="span9">
<form class="well form-search">
<input type="text" class="input-medium search-query">
<button type="submit" class="btn">Search</button>
</form>
<pre class="prettyprint linenums">
<form class="well form-search">
<input type="text" class="input-medium search-query">
<button type="submit" class="btn">Search</button>
</form>
</pre>
</div>
</div> <!-- /row -->
<div class="row">
<div class="span3">
<h3>行内表单</h3>
<p>Inputs元素默认情况下是块级元素,添加<code>.form-inline</code>和<code>.form-horizontal</code>CSS类使得表单呈行内水平状。</p>
</div>
<div class="span9">
<form class="well form-inline">
<input type="text" class="input-small" placeholder="Email">
<input type="password" class="input-small" placeholder="Password">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</form>
<pre class="prettyprint linenums">
<form class="well form-inline">
<input type="text" class="input-small" placeholder="Email">
<input type="password" class="input-small" placeholder="Password">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</form>
</pre>
</div>
</div><!-- /row -->
<br>
<h2>水平表单</h2>
<div class="row">
<div class="span8">
<form class="form-horizontal">
<fieldset>
<div class="control-group">
<label class="control-label" for="input01">Text input</label>
<div class="controls">
<input type="text" class="input-xlarge" id="input01">
<p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p>
</div>
</div>
<div class="control-group">
<label class="control-label" for="optionsCheckbox">Checkbox</label>
<div class="controls">
<label class="checkbox">
<input type="checkbox" id="optionsCheckbox" value="option1">
Option one is this and that—be sure to include why it's great
</label>
</div>
</div>
<div class="control-group">
<label class="control-label" for="select01">Select list</label>
<div class="controls">
<select id="select01">
<option>something</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="multiSelect">Multicon-select</label>
<div class="controls">
<select multiple="multiple" id="multiSelect">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="fileInput">File input</label>
<div class="controls">
<input class="input-file" id="fileInput" type="file">
</div>
</div>