我无法在 javascript 中更改 div 的最大高度值。谁能给我任何提示。它适用于 chrome、safari 和 IE,但不适用于 Firefox。有什么办法让它在FF中工作?
<div id='box'>
lot of text<br/>
lot of text<br/>
</div>
#box {
max-height: 10px;
overflow: hidden;
}
$('box').setStyle({'max-height': '100px'})