Skip to content

Instantly share code, notes, and snippets.

@airen
Created December 2, 2014 07:33
Show Gist options
  • Save airen/954539ac0e20018bc96c to your computer and use it in GitHub Desktop.
Save airen/954539ac0e20018bc96c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
%clearfix {
zoom: 1;
&:before,
&:after {
content:"";
display: table;
}
&:after{
overflow: hidden;
clear:both;
}
}
@mixin hasBFC($bfc:true){
@if $bfc {
overflow:hidden;
}
@else {
@extend %clearfix;
}
}
.text{
@include hasBFC;
}
.test{
@include hasBFC(false);
}
.test {
zoom: 1;
}
.test:before, .test:after {
content: "";
display: table;
}
.test:after {
overflow: hidden;
clear: both;
}
.text {
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment