position:fixed 兼容各个浏览器

在写样式文件的时候,会遇到浏览器hack 问题

“_”是IE6专有的hack
“+”是IE7的
“\9” IE6/IE7/IE8/IE9/IE10都生效
“\0” IE8/IE9/IE10都生效,是IE8/9/10的hack
“\9\0” 只对IE9/IE10生效,是IE9/10的hack

*{ padding:0; margin:0;}
#menu{ width:50px; height:70px; border:1px solid #ccc; text-align:center; position:fixed; right:0; bottom:0; _position:absolute; _top:expression(documentElement.scrollTop+"px"); z-index:9999; background:#ff0;}
body{ height:2000px;}
    

你可能感兴趣的:(position:fixed 兼容各个浏览器)