旧版本的引导程序正在使用.pull-rightand .pull-left。
bootstrap 3有什么替代方案float:left吗?float:right
旧版本的引导程序正在使用.pull-rightand .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