【发布时间】:2011-07-06 20:05:43
【问题描述】:
我有以下html:
<div id="thumbs">
...8 image tags width and height of images 100 x 100px
</div>
相关的CSS是:
#thumbs
{
overflow:hidden;
float:left;
position:relative;
background-color:white;
height:100px;
width:100%;
}
#thumbs img
{
padding:5px;
}
当我将分辨率降低到最低设置 -800 x 600 时,最后一张图片 -img8 会跳到下一行。我希望所有图像都显示在一行中。这可能吗?
【问题讨论】: