Ie6 Extra Padding on Bottom

IE6 extra padding on bottom

Is there an image in your div? If there's an image, there's a bug in IE 6 that can cause white space within the div to create extra padding on the bottom

Extra padding shows up with

<div>
<img src="myimage.jpg">
</div>

Extra padding doesn't show up when you change your HTML to

<div><img src="myimage.jpg"></div>

Problem with iframe and IE6 and IE7 causing extra bottom padding

try setting the following CSS and see if it helps:

iframe { 
margin: 0;
padding: 0;
padding: 4px;
border: 1px solid #d5d5d5;
}

.clear {
clear: both;
}

Extra padding at bottom of HTML linked image in Chrome, IE6, and Firefox

It might be the two <br>'s...

Extra padding at bottom of HTML linked image in Chrome, IE6, and Firefox

It might be the two <br>'s...

Extra Padding From Bottom Of Div After jQuery Accordian Script Is Actived

No idea what the problem is, haven't invested enough time to understand. Although it goes away when I add the following to the css

#wrapper {overflow:auto}

Not sure how satisfying a "this solves it with no explanation" is :)



Related Topics



Leave a reply



Submit