if you didnt understand the subject i'll try and explain it a bit better here! This is my problem in IE my page looks like this http://www.readyflowers.com.au/div-fill.gif But what i want is when there is no content for those divs not to appear so it would look like this (In firefox it works!) http://www.readyflowers.com.au/div-fill-firefox.gif
I noticed you also posted the same question at Devshed. It's not polite to cross post. Find the forum you feel will best handle your issue and give them a chance to answer. If you don't want to appear to be a luser, read and follow the suggestions in ESR's How to ask questions the smart way. cheers, gary
IE preserves a linebox which has a line-height determined by the font size. Modern browsers treat an empty block element as, well, empty, therefore zero height. It's a bug in IE. The first fix is don't have empty block elements. Short of that, make the font-size zero, and overflow hidden. cheers, gary