SASS ClearFix Mixin
CSS Clear FIx Mixin For SASS
# style.scss
@mixin clearFix(){
&:before,
&:after{
content: " ";
display: table;
}
&:after{
display: block;
clear: both;
height: 1px;
margin-top: -1px;
visibility: hidden;
}
&{
*zoom: 1;
}
}
How To Use
.container{
@include clearFix();
.column{
float: left;
}
}
Written by Shavit
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Css
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#