Skip to content

Instantly share code, notes, and snippets.

@rozmiarek
rozmiarek / css: overflow hidden alternative
Created July 10, 2010 21:38
css: overflow hidden alternative
.elementWithFloatedChilds { height: 1%; }
.elementWithFloatedChilds:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}