Quickly and easily clear floated content within a container by adding a clearfix utility.
Easily clear floats by adding .clearfixto the parent element. Can also be used as a mixin.
<divclass="clearfix">...</div>
// Mixin itself@mixinclearfix(){&::after{display:block;content:"";clear:both;}}// Usage as a mixin.element{@includeclearfix;}
The following example shows how the clearfix can be used. Without the clearfix the wrapping div would not span around the buttons which would cause a broken layout.