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

Posted

tags:

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

.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" );
}

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

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

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

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

CSS ie6的最小宽度/最大宽度

CSS 最大/最小宽度和最大/最小高度

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