Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to overflow the item’s shadow? Re: How to overflow the item’s shadow?

#121912
Andy Howells
Participant

Oveflow: hidden; is a clearfix for the lazy.

Best bet is to use Nicolas Gallagher’s Clearfix;


.cf:before, .cf:after {
content:"";
display:table;
}

.cf:after {
clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
zoom:1;
}