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.
  1. /* style.css
  2. -------------*/
  3. #container {
  4. position:relative; /* remove this */
  5. min-width:999px;
  6. max-width:1140px;
  7. margin:0px auto 0px auto;
  8. z-index:1;
  9.  
  10. }
  11.  
  12. /* ie6.css
  13. -------------*/
  14. #container {
  15. position:static; /* or you can add this only to ie */
  16. width:expression((document.documentElement.clientWidth || document.body.clientWidth) <= 1001? "999px" :
  17. (document.documentElement.clientWidth || document.body.clientWidth) >= 1142? "1140px" : "auto");
  18. }

以上是关于IE6/Maxthon中的内容随表达式消失的主要内容,如果未能解决你的问题,请参考以下文章

切换页面后标签内容消失

当 ViewPager 中的片段出现和消失时如何执行一些代码

当我导航回片段时,片段的内容消失了

焦点在 EditText 上时 ViewPager2 片段内容消失

片段内的片段不能与 ScrollView 一起使用

内联 SVG 随 Flexbox 消失