我有一个包含两个图像和一些文本的文档。第一个图像向左浮动,第二个图像向右浮动。
问题是 DIV 中的文本与第二个图像重叠。文本“ First DIV after second image ”应该放在第一张图片的下方和第二张图片的左侧(因为它在第二个IMG
标签之后)。我错过了什么?
小提琴:http: //jsfiddle.net/yLUnC/4/
html:
<div class="wrapper">
<div>DIV before first image</div>
<img class="floatLeft" src="http://placehold.it/200x100&text=First+image">
<div>DIV after first, before second</div>
<img class="floatRight" src="http://placehold.it/200x100&text=Second+image">
<div>First DIV after second image</div>
<div>text</div>
<div>text</div>
<div>text</div>
<div>text overlapping second image, not good</div>
<div>last DIV</div>
</div>