Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to align text below an image in CSS?

Tags:

html

css

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.

like image 600
Adz Avatar asked Mar 23 '14 14:03

Adz


People also ask

How do I put text under a picture?

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.

How do I align text in an image?

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.


2 Answers

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/

like image 191
GolezTrol Avatar answered Sep 30 '22 18:09

GolezTrol


Best way is to wrap the Image and Paragraph text with a DIV and assign a class.

Example:

<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> 
like image 43
Siva Charan Avatar answered Sep 30 '22 17:09

Siva Charan