源代码里最后几行设置样式的代码有什么作用?
* html, * html body {
background-image: url(about:blank);
background-attachment: fixed;
}
* html #menu {
position: absolute;
bottom: auto;
top: expression(100+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');
}上面的代码有什么作用?浏览器兼容?