其他分享
首页 > 其他分享> > bootstrap4常用样式清单(可查找)

bootstrap4常用样式清单(可查找)

作者:互联网

1、容器和网格系统

容器

栅格系统

2、字体颜色及背景颜色

字体

背景

3、边框

增加边框

删除边框

边框颜色

圆角边框

4、 内边距(pading)外边距(margin)

内边距

单边

pading:.5rem 0; //py-2

外边距

单边

单边大小

margin:0 auto;

auto

5、清除浮动

// Mixin itself
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}


// Usage as a mixin
.element {
@include clearfix;
}

6、display 显示

.d-{value} for all //任何尺寸使用

.d-{breakpoint}-{value} for sm, md, lg, and xl.//对应尺寸加载

打印样式 //使用较少

7、嵌入元素样式

包含<iframe>, <embed>, <video>, and <object>等元素样式

<div class="embed-responsive embed-responsive-21by9">
<`iframe class="embed-responsive-item" src="..."></iframe`>
</div>

8、弹性布局

水平方向

垂直方向

同样的不同尺寸适配样式

justify content //可匹配到不同尺寸

wrap

order //子元素设置 支持不同尺寸匹配

Align items //子元素设置 支持不同尺寸匹配

Align self//子元素设置 支持不同尺寸匹配

Align content//子元素设置 支持不同尺寸匹配�0�8

9、浮动 可适配:float-(sm,md lg xl)-xxx

10、图片替换文字

<h1 class="text-hide" style="background-image: url('/assets/brand/bootstrap-solid.svg'); width: 50px; height: 50px;">Bootstrap</h1>

11、定位

固定定位

.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}

12、 尺寸(size)

区间

13、文本

文本定位

文本 转换(Text transform) //所有浏览器都支持该属性

字体 加重和斜体(Font weight and italics)

14、 垂直对齐(Vertical alignment)

vertical-align: text-bottom!important; //.align-text-bottom

15、显示隐藏

visibility: hidden!important;

16、表格

表格行设置背景色

17、按钮及按钮组

按钮

按钮组

18、列表组

列表背景色

19、表单

控制表单尺寸

多选和单选

下拉列表(select)

校验状态

20、 信息提示框

背景色 追加以下类名

21、三角符号

标签:group,text,清单,查找,sm,bootstrap4,inline,margin,important
来源: https://www.cnblogs.com/springsnow/p/12146554.html