IE6下DIV高度的问题
在IE6下,使用 height:10px;时,比实际的高度要高,使用如下代码处理:
?
<div style="height:10px;font-size:0px;overflow:hidden;"></div>
即,将字体设置为0,再将溢出隐藏。