IE6最小高度最小宽度最大高度最大宽度的css写法

发布时间:2020-12-11编辑:脚本学堂
文中讲述了关于IE6最小高度最小宽度最大高度最大宽度css写法(兼容IE6/IE7/IE8/火狐)的内容,需要的朋友参考一下。

IE6最小高度
 

复制代码 代码示例:
.min_height{
  min-height:200px;
  _height:expression(this.scrollHeight < 200 ? "200px" : "auto");
}

IE6最大高度
 

复制代码 代码示例:
.max_height{
  max-height:400px;
  _height:expression(this.scrollHeight > 400 ? "400px" : "auto");
}

IE6最小宽度
 

复制代码 代码示例:
max-width: 600px;
 _width:expression(document.body.clientWidth > 600 ? "600px" : "auto");
 /*_width:expression(document.body.clientWidth < 300 ? "300px" : "auto"); 这是min-width */

IE6最大最小宽度
 

复制代码 代码示例:

.min_and_max_width{
  min-width:300px;
  max-width:600px;
  _width: expression(
    document.body.clientWidth < 300 ? "300px" :
       ( document.body.clientWidth > 600 ? "600px" : "auto")
  );
}
 

IE6最大最小高度
 

复制代码 代码示例:

.min_and_max_height{
  min-height:200px;
  max-height:400px;
  _height: expression(
    this.scrollHeight < 200 ? "200px" :
      ( this.scrollHeight > 400 ? "400px" : "auto")
  );
}