About Blog

Sunday Weekly Roundup #24 - 6/22/2008

Comments (0)
Category: Weekly Roundup

How to set container height to 1px in IE6

Comments (0)
Category: IE6 Bugs

If you use clearfix class to clear floated elements throughout your site, you might have been faced with a large gap in IE6 browser, even if you specified 1px height property, like so:

.clearfix { clear:both; height:1px; }

There is a very simple solution for this problem - just add the line-height property.

.clearfix { clear:both; height:1px; line-height:1px; }

Sunday Weekly Roundup #23 - 06/15/2008

Comments (2)
Category: Weekly Roundup