Tell us what’s happening:
Describe your issue in detail here.
Your #image
should be centered within its parent. - What does this mean?
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<title id="title">
Dr. Norman Borlaug</title>
<body>
<main id="main">
<div id="img-div">
<img id="image"></img>
<div id="img-caption">Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.</div></div>
<p id="tribute-info">time line of <a target="_blank" href="https://en.wikipedia.org/wiki/Norman_Borlaug" id="tribute-link">Dr. Borlaug's life</a></p>
</main>
</body>
</html>
/* file: styles.css */
img {
display: block;
}
#image {
max-width: 100%;
height: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Challenge: Tribute Page - Build a Tribute Page
Link to the challenge: