IE的最小/最大高度/宽度解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE的最小/最大高度/宽度解决方法相关的知识,希望对你有一定的参考价值。

[via rtcrm]
  1. .minHeight {
  2. min-height: 200px;
  3. height: auto !important;
  4. height: 200px;
  5. }
  6.  
  7. .minWidth {
  8. min-width: 200px;
  9. width: auto !important;
  10. width: 200px;
  11. }
  12.  
  13. .maxHeight {
  14. max-height: 700px;
  15. height: auto !important;
  16. height: expression( document.body.clientHeight > 700 ? "700px" : "auto" );
  17. }
  18.  
  19. .maxWidth {
  20. max-width: 700px;
  21. width: auto !important;
  22. width: expression( document.body.clientWidth > 700 ? "700px" : "auto" );
  23. }

以上是关于IE的最小/最大高度/宽度解决方法的主要内容,如果未能解决你的问题,请参考以下文章

IE的最小/最大高度/宽度解决方法

css IE6のための最小高度,最小宽度,最大高度,最大宽度。

前端之css(宽高)设置小技巧

ie6中DIV最小高度的解决方法

ie67 设置最小宽度最小高度

IE6 bug总结