IE6 Empty Div Adds Margin - Fix


/ Published in: CSS
Save to your folder(s)

For instances where you have an empty div that is less than about 10-15px in height. IE assumes it should contain something and allots room for text.

I first found this on the webdeveloper.com forums.
The kicker here for me was the "font-size:0" declaration. Cheers!


Copy this code and paste it in your HTML
  1. div{
  2. font-size:0;
  3. line-height:0;
  4. margin:0;
  5. padding:0;
  6. }

URL: http://www.webdeveloper.com/forum/showthread.php?t=66024

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.