Clear Floats

/* HTML
<#container>
<float />
<float />
</#container>
*/
/******** 1ere Methode *********/
#container {
overflow: auto;
}
* html #container {
height: 1%;
}
/******** 2nd  Methode *********/
#container:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#container {
display: inline-block;
}

source

Leave a Reply