Forums

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

Home Forums CSS Firefox Box Shadow Underflow Re: Firefox Box Shadow Underflow

#114650
TheDoc
Member

That’s because you’re not clearing your floats. Instead you’re trying to fix it by giving a fixed height to the container, which is a no-no.

Add the stuff from this page to your CSS file: http://nicolasgallagher.com/micro-clearfix-hack/

Then add a class of `cf` to your `.homepage` container and remove the fixed height you’ve set on it in your CSS file. That should do it!