次の HTML があるとします。
<style>
.b{
float:left; width: 300px; height: 300px;
}
</style>
<div style="overflow:hidden;width:300px;height:300px;" id="a">
<div class="b" style="background-color: red"></div>
<div class="b" style="background-color: green"></div>
<div class="b" style="background-color: blue"></div>
</div>
.b
div を 1 行に並べたい。ただし、これ#a
は のオーバーフローが正常な場合にのみ行われます。