Internet Explorer中的最大div高度

时间:2010-09-26 19:02:15

标签: internet-explorer html css

如何在Internet Explorer中获得静态60px高度的div?

3 个答案:

答案 0 :(得分:4)

<div style="height: 60px; overflow: hidden;">Hello, World</div>

不幸的是,某些版本的IE不遵循max-height,而overflow: hidden就派上用场了。请注意,无论内部是什么,div总是高度为60px。

答案 1 :(得分:3)

#el {
    height:expression(this.scrollHeight>59?"60px":"auto");     
}

答案 2 :(得分:0)

<div style="height: 60px;">This is my div</div>