Use a simpler clearfix
Created by: necolas
You could simplify the clearfix code with the code below, works in all modern browsers.
.clearfix {
*zoom: 1;
}
.clearfix:after {
clear: both;
content: "";
display: table;
}
Created by: necolas
You could simplify the clearfix code with the code below, works in all modern browsers.
.clearfix {
*zoom: 1;
}
.clearfix:after {
clear: both;
content: "";
display: table;
}