div 浮动时自适宽度
我们在设置div浮动宽度自适时div会自动换行
我们只需要设置如下:
.catListTag li{
float:left;
width:auto !important;
width:45px; /*ie6.0*/
min-width:45px; /*ie7.0*/
overflow: visible;
display: block;
white-space:nowrap; /* 不换行 */
margin-left:8px;
}
我们在设置div浮动宽度自适时div会自动换行
我们只需要设置如下:
.catListTag li{
float:left;
width:auto !important;
width:45px; /*ie6.0*/
min-width:45px; /*ie7.0*/
overflow: visible;
display: block;
white-space:nowrap; /* 不换行 */
margin-left:8px;
}