假设我有这个 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 坐在一条线上。但是,它们仅在#a
' 溢出正常时才这样做。