I'm trying to make nested boxes in CSS and place a picture (or a flash movie) inside the whole thing. The problem is that atleast Explorer adds a 750 x 4 sized empty space under the picture. Is there a way to get rid of that empty space? A picture of the problem may clear things up a bit: take a look
How should I change the following code?
<div style="border:solid 4px #FFFFFF; width:768px;">
<div style="border:solid 1px #E6E6E6;">
<div style="border:solid 1px #FFFFFF;">
<div style="border:solid 1px #CCCCCC;">
<div style="border:solid 1px #FFFFFF;">
<div style="border:solid 1px #E6E6E6;">
<div>
<img src="test.gif" width=750px; height: 138px;>
</div>
</div>
</div>
</div>
</div>
</div>
</div>