HTML
<div class="image1"> <img src="images/img1.png" width="250" height="444" alt="Screen 1"/> <img src="images/img2.png" width="250" height="444" alt="Screen 2"/> <img src="../images/img3.png" width="250" height="444" alt="Screen 3"/> </div>
If I add a paragraph text between img1 and img2 they get separated (img2 goes to a newline)
What I'm attempting to do is this (with some space between the images):
[image1] [image2] [image3] [text] [text] [text]
I haven't given the images their own individual class names because the images don't align horizontally to one another.
Click the picture you want to add a caption to. Click References > Insert Caption. To use the default label (Figure), type your caption in the Caption box.
Hold down Shift and use the mouse or touchpad to select the objects that you want to align. Select Shape Format or Picture Format. Select Align. If you don't see Align on the Shape Format tab, select Arrange, and then choose Align.
Add a container div for the image and the caption:
<div class="item"> <img src=""/> <span class="caption">Text below the image</span> </div>
Then, with a bit of CSS, you can make an automatically wrapping image gallery:
div.item { vertical-align: top; display: inline-block; text-align: center; width: 120px; } img { width: 100px; height: 100px; background-color: grey; } .caption { display: block; }
div.item { /* To correctly align image, regardless of content height: */ vertical-align: top; display: inline-block; /* To horizontally center images and caption */ text-align: center; /* The width of the container also implies margin around the images. */ width: 120px; } img { width: 100px; height: 100px; background-color: grey; } .caption { /* Make the caption a block so it occupies its own line. */ display: block; }
<div class="item"> <img src=""/> <span class="caption">Text below the image</span> </div> <div class="item"> <img src=""/> <span class="caption">Text below the image</span> </div> <div class="item"> <img src=""/> <span class="caption">An even longer text below the image which should take up multiple lines.</span> </div> <div class="item"> <img src=""/> <span class="caption">Text below the image</span> </div> <div class="item"> <img src=""/> <span class="caption">Text below the image</span> </div> <div class="item"> <img src=""/> <span class="caption">An even longer text below the image which should take up multiple lines.</span> </div>
http://jsfiddle.net/ZhLk4/1/
Updated answer
Instead of using 'anonymous' div and spans, you can also use the HTML5 figure
and figcaption
elements. The advantage is that these tags add to the semantic structure of the document. Visually there is no difference, but it may (positively) affect the usability and indexability of your pages.
The tags are different, but the structure of the code is exactly the same, as you can see in this updated snippet and fiddle:
<figure class="item"> <img src=""/> <figcaption class="caption">Text below the image</figcaption> </figure>
figure.item { /* To correctly align image, regardless of content height: */ vertical-align: top; display: inline-block; /* To horizontally center images and caption */ text-align: center; /* The width of the container also implies margin around the images. */ width: 120px; } img { width: 100px; height: 100px; background-color: grey; } .caption { /* Make the caption a block so it occupies its own line. */ display: block; }
<figure class="item"> <img src=""/> <figcaption class="caption">Text below the image</figcaption> </figure> <figure class="item"> <img src=""/> <figcaption class="caption">Text below the image</figcaption> </figure> <figure class="item"> <img src=""/> <figcaption class="caption">An even longer text below the image which should take up multiple lines.</figcaption> </figure> <figure class="item"> <img src=""/> <figcaption class="caption">Text below the image</figcaption> </figure> <figure class="item"> <img src=""/> <figcaption class="caption">Text below the image</figcaption> </figure> <figure class="item"> <img src=""/> <figcaption class="caption">An even longer text below the image which should take up multiple lines.</figcaption> </figure>
http://jsfiddle.net/ZhLk4/379/
Best way is to wrap the Image and Paragraph text with a DIV and assign a class.
<div class="image1"> <div class="imgWrapper"> <img src="images/img1.png" width="250" height="444" alt="Screen 1"/> <p>It's my first Image</p> </div> ... ... ... ... </div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With