Tell us what’s happening:
I am stuck on the requirement to have, " # image should be centered within its parent". I have the image descended from the figure. If I try to change the display for the parent, # img-div or figure to flex and text align center, it throws my caption to the right side of my image and pushed my image to the left. My code is pasted below to what I have currently that keeps my image centered and the caption below the image. Despite this it says I have to have the image centered within its parent.
I’ve tried setting the display, text align for figure, # img-div etc. but no matter the iteration, it does not pass. I am missing something probably pretty obvious. If you could point me in the right direction, I would greatly appreciate it.
Posted below is both a section my html code and style sheet that is pertinent.
Your code so far
WARNING
The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.
You will need to take an additional step here so the code you wrote presents in an easy to read format.
Please copy/paste all the editor code showing in the challenge from where you just linked.
<main id="main">
<figure id="img-div">
<img src="https://storage.googleapis.com/wzukusers/user-13573728/images/5c39309e378f61sf9HnZ/HIMB.jpg" id="image" alt="Dr. Ruth Gates seen in her coral lab with a confocal microscope and computer monitor with a flourescent coral image behind her"
/>
<figcaption id="img-caption">Dr. Ruth Gates in her coral laboratory at the Hawaii Institute of Marine Biology. Photo via Gates Coral Lab.
</figcaption>
</figure>
<section id="tribute-info">
figure{
display: block;
text-align: center;
}
img{
background-size: cover;
max-width: 100%;
opacity: 0.8;
border: 5px solid white;
border-radius: ;
margin-top: 1em;
box-shadow: 2px 2px 10px black;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#img-div{
display: block;
text-align: center;
#img{
display: block;
text-align: center;
}
#img-caption {
font-family: gill sans;
color: grey;
margin-top: 10px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/109.0
Challenge: Tribute Page - Build a Tribute Page
Link to the challenge: