程序员人生 网站导航

Css教程:ie6的fixed解决方案

栏目:htmlcss时间:2014-05-17 03:03:42

  网(LieHuo.Net)教程 ie7,firefox都可以支持postion:fixed (随页面滚动),只是对ie6不起作用,其实解决的方法比较简单,在css里定义一个表达式就可以了。比如要把id为left_menu的元素fixed,就可以这样:

.left_menu{
position:fixed; /*火狐*/
_position:absolute; /*ie6*/
*position:absolute; /*ie7,本来fixed已经可以了,但是加了top对ie7也会发生作用,所以只能和ie6一样定义*/
top:expression(eval(document.documentElement.scrollTop)); }

 

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐