IE的最小/最大高度/宽度解决方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE的最小/最大高度/宽度解决方法相关的知识,希望对你有一定的参考价值。
[via rtcrm]
.minHeight { min-height: 200px; height: auto !important; height: 200px; } .minWidth { min-width: 200px; width: auto !important; width: 200px; } .maxHeight { max-height: 700px; height: auto !important; height: expression( document.body.clientHeight > 700 ? "700px" : "auto" ); } .maxWidth { max-width: 700px; width: auto !important; width: expression( document.body.clientWidth > 700 ? "700px" : "auto" ); }
以上是关于IE的最小/最大高度/宽度解决方法的主要内容,如果未能解决你的问题,请参考以下文章