清除浮动(Clearfix)
通过添加clearfix实用程序,可以快速轻松地清除容器中的浮动内容。
在本页面
通过将.clearfix
添加到父元素,可以轻松清除 float
。也可用作mixin。
在HTML中使用:
<div class="clearfix">...</div>
mixin源代码:
@mixin clearfix() {
&::after {
display: block;
clear: both;
content: "";
}
}
在SCSS中使用mixin:
.element {
@include clearfix;
}
下面的示例显示如何使用clearfix。如果没有clearfix,包装div将无法跨越按钮,这将导致布局中断。
<div class="bg-info clearfix">
<button type="button" class="btn btn-secondary float-start">Example Button floated left</button>
<button type="button" class="btn btn-secondary float-end">Example Button floated right</button>
</div>