HTML
<div class="cont">
<div class="size" id="size1"></div>
<div class="text">Here is some textHere is some text Here is some text</div>
</div>
<div class="cont">
<div class="size" id="size2"></div>
<div class="text">Here is some textHere is some text Here is some text</div>
</div>
CSS
.size {
background-color: red;
height: 100px;
width: 100px;
}
#size2 {
width: 200px;
}
.cont {
padding: 10px;
float: left;
}
我需要div.cont
's widths 是它们所包含的宽度div.size
(在我的实际示例div.size
中是一个图像,它的 with 在每个实例中都会有所不同)。
这不会发生,因为div.text
它占用的空间比它的容器多,我该如何阻止它并使文本换行?