当前位置: 代码迷 >> HTML/CSS >> 让全部浏览器都支持max-height的CSS样式代码
  详细解决方案

让全部浏览器都支持max-height的CSS样式代码

热度:138   发布时间:2012-11-25 11:44:31.0
让所有浏览器都支持max-height的CSS样式代码
让所有浏览器都支持max-height的CSS样式代码,完整:
max-height:1000px;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<1000?"1000px":""); overflow:hidden;这里的1000和1000px是你需要的数值,注意3个数值的相同。
让IE6支持最大高度max-height的时候别忘记加上overflow:hidden;

min-height,同理!
  相关解决方案