IE6/Maxthon中的内容随表达式消失
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE6/Maxthon中的内容随表达式消失相关的知识,希望对你有一定的参考价值。
Content may disappear on window resize in IE6/Maxthon, when using expressions to set min-width/max-width. To fix it - just remove 'position:relative' in #container.
/* style.css -------------*/ #container { position:relative; /* remove this */ min-width:999px; max-width:1140px; margin:0px auto 0px auto; z-index:1; } /* ie6.css -------------*/ #container { position:static; /* or you can add this only to ie */ width:expression((document.documentElement.clientWidth || document.body.clientWidth) <= 1001? "999px" : (document.documentElement.clientWidth || document.body.clientWidth) >= 1142? "1140px" : "auto"); }
以上是关于IE6/Maxthon中的内容随表达式消失的主要内容,如果未能解决你的问题,请参考以下文章
当 ViewPager 中的片段出现和消失时如何执行一些代码