`

ie不支持max-height的解决之法

 
阅读更多
  .div{
     max-height: 100px;
     _height:expression(this.scrollHeight > 100 ? "100px" : "auto");
     overflow-y:auto;
  }

 

   这样就可以让div在ie和firefox中都实现max-height的效果

 

  .div{
     max-height: 100px;
     min-height:60px;
     _height:expression(this.scrollHeight > 100 ? "100px" : (
                      this.scrollHeight < 60 ? "60px" : "auto"));
     overflow-y:auto;
  }

 这样就可以让div在ie和firefox中都实现max-height和min-height的效果

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics