in English
क्लियरफिक्स करप
क्लियरफिक्स उपयुक्तताय जोडून कंटेनरा भितर फ्लोटेड सामुग्री बेगीन आनी सहज निवळ करात.
पालक घटकांतfloat
जोडून s सहज निवळ करचें . मिक्सिन म्हणूनय वापरूं येता..clearfix
<div class="clearfix">...</div>
// Mixin itself
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}
// Usage as a mixin
.element {
@include clearfix;
}
सकयल दिल्लें उदाहरण स्पश्टीकरण कशें वापरूं येता तें दाखयता. क्लियरफिक्स नासतना रॅपिंग डिव्ह बटणां भोंवतणी स्पॅन करचो ना जाका लागून मोडून पडपी मांडावळ जातली.
<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>