Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

HTML & CSS Aligning a caption and its image

RobertWA

Active Coder
I want to have an image centered on the page and its caption, the same width as the image, also centered. I can make the widths agree but my caption is always on the left, not centered. Is there a way to do this without putting the image and its caption intro a table?
HTML:
<figure>     
    <img src="Mills_files/image002.jpg"; width="500";/>
    <figcaption style="width:500px"; "align:center">In the mid 2000’s the remains of the race could be
        seen clearly. </figcaption>
    </figure>

The align:center seems to not help.

The relevant part of my CSS file is

CSS:
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

Thank you

Robert
 
Here yo go:

HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title></title>
 
  <style>
      .img-container {
        text-align: center;
      }
    </style>
    
  </head>
  <body>

<div class="img-container">
    <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"/>
    <div>In the mid 2000’s the remains of the race could be seen clearly.</div>
</div>
    
  </body>
</html>
 

Buy us a coffee!

Back
Top Bottom