Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to position Text Over an Image using figure and figcaption

I’m trying to position the heading, sub-heading and body over an image. I want all 3 to be aligned to the center, however I am having issue when trying to align the items to the top. What is the best approach to do this?

 <!DOCTYPE html>
    <html>
    <head>
    <style>
    </style>
    </head>
    <body>
    <div id="Container" class="Container"> 
    <figure class="fig">
        <img src="https://cdn.pixabay.com/photo/2016/10/26/19/00/domain-names-1772243_960_720.jpg"
    <figcaption >
        <h1 id="Heading" style="margin-bottom: -20%; text-align: left;">  This is a heading</h1>
        <h2 id="Subheading" style="margin-top: -20%;">This is a sub heading</h2>
        <p>This is the body text</p>
    </figcaption>
    </figure>
    </div>
    </body>
    </html>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Use position: absolute for figcaption

.fig {
  position: relative;
}

.fig figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 <!DOCTYPE html>
    <html>
    <head>
    <style>
    </style>
    </head>
    <body>
    <div id="Container" class="Container"> 
    <figure class="fig">
        <img src="https://cdn.pixabay.com/photo/2016/10/26/19/00/domain-names-1772243_960_720.jpg" />
        <figcaption >
          <h1 id="Heading">  This is a heading</h1>
          <h2 id="Subheading">This is a sub heading</h2>
          <p>This is the body text</p>
      </figcaption>
    </figure>
    </div>
    </body>
    </html>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading