码迷,mamicode.com
首页 > Web开发 > 详细

css 高宽判断

时间:2014-07-06 19:53:57      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:width   io   amp   res   re   height   

/×width: expression(this.width > 100 && this.width > this.height ? 100: true);
 height: expression(this.height > 100 ? 100: true);
width: expression(this.width > 100 ? 100: true);×/

 

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

现在最大高度,按比例缩小

 max-height:1000px;
max-width:1000px;
height: expression(this.height > 1000 ? 1000: true);

css 高宽判断,布布扣,bubuko.com

css 高宽判断

标签:width   io   amp   res   re   height   

原文地址:http://www.cnblogs.com/hr2014/p/3824725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!