in English
كليرفكس
امسح المحتوى العائم داخل الحاوية بسرعة وسهولة عن طريق إضافة أداة مساعدة clearfix.
امسح float
s بسهولة عن طريق الإضافة .clearfix
إلى العنصر الأصل . يمكن أيضا أن تستخدم كمزج.
<div class="clearfix">...</div>
// Mixin itself
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}
// Usage as a mixin
.element {
@include clearfix;
}
يوضح المثال التالي كيف يمكن استخدام clearfix. بدون clearfix ، لن يمتد التفاف div حول الأزرار مما قد يتسبب في حدوث تخطيط معطل.
<div class="bg-info clearfix">
<button type="button" class="btn btn-secondary float-left">Example Button floated left</button>
<button type="button" class="btn btn-secondary float-right">Example Button floated right</button>
</div>