2009.8.21-30
Thursday, August 27th, 2009让 IE6 支持 position:fixed
<!– compliance patch for microsoft browsers –>
<!–[if lt IE 7]><link rel="stylesheet" href="ie-stuff.css" type="text/css" media="screen"/><![endif]–>
ie-stuff.css
程序代码 程序代码
#footer {
position: absolute;
bottom: auto;
clear: both;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop
+(documentElement.clientHeight-this.clientHeight) - 1
: document.body.scrollTop
+(document.body.clientHeight-this.clientHeight) - 1);
}