pablolobos
7/23/2013 - 4:21 PM

mixin: clearfix-extend

mixin: clearfix-extend

%clearfix {
	*zoom: 1;
	&:before, &:after {
		content: " ";
		display: table;
	}
	&:after {
		clear: both;
	}
}

//Usage
.container-with-floated-children {
	@extend %clearfix;
}