With IE7 for Windows officially out, we have to now deal with new browser issues, like the IE box model being fixed. The biggest issue for me has been how to handle changes in box clearing using the easy clearing method. Roger Johansson at 456 Berea Street blogged about the issue, and CSS-D maven Ingo Chao provided a link to the solution which involves adding display:inline-block and then display:block:
.clearfix:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix {display:inline-block;}
/* Hide from IE Mac \*/
.clearfix {display:block;}
/* End hide from IE Mac */Time to patch some CSS.