FF下要让固定浏览器的位置可以用 position:fixed很好解决。
但IE6下不识别 fixed,解决办法:
在ie6下设置
html{overflow:hidden;}
body{height:100%;overflow:auto;}
#要固定的元素{position:poabsolute;top:30px;...}
FF下要让固定浏览器的位置可以用 position:fixed很好解决。
但IE6下不识别 fixed,解决办法:
在ie6下设置
html{overflow:hidden;}
body{height:100%;overflow:auto;}
#要固定的元素{position:poabsolute;top:30px;...}