bootstrap_3.0
在学习bootstrap_3.0的时候的一些记录
在学习bootstrap_3.0的时候的一些记录
栅格系统
2/3
.col-md-81/3
.col-md-41/3
.col-md-41/3
.col-md-41/3
.col-md-41/2
.col-md-61/2
.col-md-6排版
段落一:段落之间1/2行高外边距 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.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.
段落二:.lead可以让段落突出显示
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的.text-left 左对齐
p的.text-center 居中
p的.text-right 右对齐
p的.text-muted
p的.text-primary
p的.text-success
p的.text-info
p的.text-warning
p的.text-danger
span.label-muted
span.label-primary
span.label-success
span.label-info
span.label-warning
span.label-danger
blockquote作为引用 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
来源:鼠标显示具体来源名称
blockquote的.pull-right让引用右对齐 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
来源:鼠标显示具体来源名称
code
标签包裹内联样式代码片段
pre标签用以展示多行代码 .pre-scrollable设置max-height为350px,并在垂直方向展示滚动条
表格
xx | xx | xx |
---|---|---|
100 | 200 | 300 |
400 | 500 | 600 |
表格元素会自动设置一些基本的边框样式,以保证结构的可读性和维护性。更多的样式效果需要添加.table
样式名。
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
通过给表格添加样式名.table-striped
来添加一些美妙的斑马线效果。
注意:条纹表格的实现使用了:nth-child
样式选择器,在IE7-IE8下是无效的。
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
给整个表格添加圆角和边框来达到美化的效果。
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
Mark | Otto | @TwBootstrap | |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
通过添加样式名.table-condensed
将单元格的内补白减半(从8像素减小到4像素),使得表格看起来更加的紧凑。
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
随意的将这些有效的样式名组合起来,展现出表格的不同效果。
Full name | |||
---|---|---|---|
# | First Name | Last Name | Username |
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
表单
我们默认支持的是表单控件在右边的展示样式。列表如下:
进度条
下拉菜单
图片
Well嵌入效果
Well 默认嵌入效果
Well well-lg嵌入效果
Well well-sm嵌入效果
杂七杂八
模态框 modal.js
More Info $('#myModal').modal(options)
可以将选项通过data属性或JavaScript传递。对于data属性,需要将选项名称放到data-之后,例如data-backdrop=""。
$('#myModal').modal('toggle') ###< 手动启动或隐藏模态框 $('#myModal').modal('show') ###< 手动打开一个模态框 $('#myModal').modal('hide') ###< 手动隐藏一个模态框
标签页 tab.js
More Info 工具提示 tooltip.js
More Info data-属性
data-toggle ###< 触发的模块 data-placement ###< 显示位置 data-original-title ###< 提示内容
弹出框 popover.js
More Info data-属性
data-toggle ###< 触发的模块 data-content ###< 弹出框内容 data-original-title ###< 弹出框标题
轮播 carousel.js
More Info