相容IE6瀏覽器的最大高度和最小高度css程式碼

antzone發表於2017-03-02

IE6瀏覽器是不支援最大高度和最小高度屬性的,下面就通過相容性措施實現此功能。

一.最大高度效果:

[CSS] 純文字檢視 複製程式碼
.max_height{
  max-height:400px;
  _height:expression(this.scrollHeight > 400 ? "400px" : "auto");
}

二.最小高度效果:

[CSS] 純文字檢視 複製程式碼
.min_height{
  min-height:200px;
  _height:expression(this.scrollHeight < 200 ? "200px" : "auto");
}

相關文章