1006css解决ie6下不兼容position:fixed 阅读(7498)条2011/10/6 20:31:10
                            
                            在IE6中是不能直接使用 position:fixed; 。需要一些 CSS Hack 来解决它。当然,IE6 的问题也不仅仅 position:fixed; 下例让 <div id=”top”>…</div> 元素固定在浏览器的底部和距离右边的20个像素: #top{  position:fixed;_position:  absolute;bottom:0;  right:5%;  _bottom:auto;   _top:expression(eval(document.documentElement.scrollTop+doc...阅读全文
                            Taget:css解决ie6 fixed CSS Hack