Reputation: 2049
How can I have a div of static 60px height in Internet Explorer?
Upvotes: 6
Views: 947
Reputation: 186742
#el {
height:expression(this.scrollHeight>59?"60px":"auto");
}
Upvotes: 3
Reputation: 6992
<div style="height: 60px; overflow: hidden;">Hello, World</div>
Some versions of IE don't follow max-height, unfortunately, and that's where overflow: hidden
comes in handy. Note that the div will ALWAYS have 60px height no matter what's inside it.
Upvotes: 4