HTML - preferable (image is outside of p tag)
HTML - acceptable (image is within p tag)Code:<p>Monocrystalline, polycrystalline and amorphous solar panels with without frames, for 12V battery charging.</p><img src="images/thumbs/rigid panel mini.jpg" width="62" height="62" alt="Rigid solar panels" />
I would like the image aligned right and the text to wrap around it.Code:<p>Monocrystalline, polycrystalline and amorphous solar panels with without frames, for 12V battery charging.<img src="images/thumbs/rigid panel mini.jpg" width="62" height="62" alt="Rigid solar panels" /></p>
If I reverse the HTML and have the <img> before the <p> I can achieve the look I want with the following CSS.
I'd prefer the text to come before the image in the HTML if possible.Code:img { margin:0; padding:0 0 0px 5px; vertical-align:text-top; float:right; }
Any help gratefully received, thanks.



Reply With Quote


Bookmarks