https://jsfiddle.net/calebp/ksnmggL5/light/
I'm having difficulty with the webpage I'm trying to make. In a related example, I have the images exactly where I want them (the larger one is aligned to the right, and the banner is aligned to the right and to the left of it). The problem is that I want the paragraph to be below the banner image. How can I make him go completely below him, instead of accidentally βswimmingβ in the distance?
<div style="width: 920px;">
<div style="clear: both; text-align: left;">
<a href="largeimage.png"><img border="0" src="largeimage.png" style="float: right; margin-bottom: 1em; margin-left: .75em;"/></a>
<img border="0" src="banner.png" style="clear: left; float: right; margin-bottom: 1em;"/>
<p>THE PARAGRAPH</p>
</div>
</div>
Here is what I want it to look, but without a fixed width:
https://jsfiddle.net/calebp/ksnmggL5/5/
source
share