旧版本的引导程序正在使用.pull-right
and .pull-left
。
bootstrap 3有什么替代方案float:left
吗?float:right
旧版本的引导程序正在使用.pull-right
and .pull-left
。
bootstrap 3有什么替代方案float:left
吗?float:right
您仍然可以使用.pull-left
& .pull-right
,查看utilities.less
,您会发现以下内容:
// Floats
.clearfix { // Use this to clear floats
.clearfix();
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.pull-left
并且.pull-right
仍然存在:
http: //getbootstrap.com/css/#helper-classes