• user warning: Table './urlgreyhot/cache_page' is marked as crashed and should be repaired query: LOCK TABLES cache_page WRITE in /home/admin/public_html/urlgreyhot.com/public/personal/includes/database.mysql.inc on line 174.
  • user warning: in /home/admin/public_html/urlgreyhot.com/public/personal/includes/database.mysql.inc on line 174.

IE7 and PIE Easy Clearing

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.