CSS Clearfix
Last updated
Last updated
<div class="container clearfix">
<div class="box purple"></div>
<div class="box blue"></div>
</div>
<p>This paragraph should be below the two floated boxes</p>/*
Properly calculates the height of the containing element with elements floated
inside.
*/
.clearfix:after {
content: "";
display: table;
clear: both;
}