IE6不支持position:fixed的解决方法
摘要:
解决IE6不支持position:fixed的方法,非常简单,具体调用请参考下面:/*让position:fixed在IE6下可用! */.fixed-top /* 头部固定 */{position:fixed;bottom:auto;top:0px;}.fixed-bottom /* 底部固定 */{position:fixed;bottom:0px;top:auto;}.fixed-left /* 左侧固定 */{position:fixed;right:auto;left:0px;}.fixed-right /* 右侧固定 */{position:fixed;right:0px;left 阅读全文
posted @ 2012-10-16 17:36 senly 阅读(1188) 评论(0) 推荐(0) 编辑