我有一个div内容,它有一个固定宽度大小。在div里面我放了其他div - float:left;
我需要什么:
要溢出的内容div:如果内部的div的宽度大于内容div宽度,则自动(水平)。
<div class="div_26" style="width:10px;height:10px;overflow:auto; ">
<div style="float:left;width:7px;height:8px;">
<div style="float:left;width:7px;height:8px;">
<div style="float:left;width:7px;height:8px;">
</div>
答案 0 :(得分:4)
尝试:
<div class="div_26" style="width:10px;height:10px;overflow:auto; ">
<div style="width:21px;">
<div style="float:left;width:7px;height:8px;"></div>
<div style="float:left;width:7px;height:8px;"> </div>
<div style="float:left;width:7px;height:8px;"></div>
<div style="clear:both"></div>
</div>
</div>