Hi,
I have multiple images (thumbnail sizes) that I'd like to display vertically with their corresponding text to their right.
Something like this:
I tried the following code, but the images comes out cascading instead.
I've used <p> in place of <div>, but it doesn't help either. Any suggestion?
Many thanks.
Min
I have multiple images (thumbnail sizes) that I'd like to display vertically with their corresponding text to their right.
Something like this:
Code:
--------
|Image1| Text1 align2 to the top of image1
--------
--------
|Image2| Text2 align2 to the top of image2
--------
--------
|Image3| Text3 align2 to the top of image3
--------
Code:
<div id="container">
<div>
<img src="image1" align="left">
Text1 aligns to the top of image1
</div>
<div>
<img src="image2" align="left">
Text2 aligns to the top of image2
</div>
<div>
<img src="image3" align="left">
Text3 aligns to the top of image3
</div>
</div>
I've used <p> in place of <div>, but it doesn't help either. Any suggestion?
Many thanks.
Min