div溢出;溢出问题

时间:2011-08-09 10:04:30

标签: html

我有一个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>

1 个答案:

答案 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>