/* 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;
}
Clear Floats
Leave a Reply
You must be logged in to post a comment.