2 つの画像といくつかのテキストを含むドキュメントがあります。最初の画像は左に、2 番目の画像は右に浮いています。
問題は、DIV のテキストが 2 番目の画像と重なることです。「 First DIV after second image 」というテキストは、最初の画像の下、2 番目の画像の左側に配置する必要があります (2 番目の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>