CSS


<div style="overflow:auto" width="100px" height="100px">
    <div height="300px">whatever</div>
</div>

IE6:外頭 div 的捲軸會掛掉,因為裡頭的 div 不受外頭 div 控制。外頭 <div> 的 style 加上 position:relative 可以解決。
Comments