清除浮动(Clearfix)
通过添加 clearfix 工具,快速、轻松地清除容器内的浮动内容。
通过在 父元素中 添加 .clearfix
,可轻松清除 float
。也可作为混合元素使用。
在 HTML 中使用:
<div class="clearfix">...</div>
mixin 源代码:
@mixin clearfix() {
&::after {
display: block;
clear: both;
content: "";
}
}
在 SCSS 中使用 mixin:
.element {
@include clearfix;
}
下面的示例展示了如何使用 clearfix。如果没有 clearfix,wrapping 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>