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

Posted

tags:

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

max/min-width & max/min-height pour IE
  1. /***** this sets the max-width value for all *****/
  2. div#division {
  3. max-width: 777px;
  4. }
  5.  
  6. /***** this sets the max-width value for IE *****/
  7. * html div#division {
  8. width: expression( document.body.clientWidth > 776 ? "777px" : "auto" );
  9. }

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

为可调整大小的 UIView 设置最小和最大宽度和高度

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

二叉树的最小高度,最大高度(深度)和宽度

Plupload - 上传时调整图像大小,使用最小高度和最小宽度而不是最大值

保持最小/最大高度/宽度的纵横比?

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