క్లియర్ఫిక్స్
క్లియర్ఫిక్స్ యుటిలిటీని జోడించడం ద్వారా కంటైనర్లో తేలియాడే కంటెంట్ను త్వరగా మరియు సులభంగా క్లియర్ చేయండి.
పేరెంట్ ఎలిమెంట్కిfloat జోడించడం ద్వారా లను సులభంగా క్లియర్ చేయండి . మిక్సిన్గా కూడా ఉపయోగించవచ్చు..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>