Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dmitriy An
11,795 PointsHi guys, What does it mean to fill the parent element?
Little bit stuck, can someone clarify what does it mean to fill the element?
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1, h2 {
color: #fff;
}
nav a {
color: #fff;
}
nav a:hover {
color: #32673f;
}
h1 {
font-family: Changa One, sans-serif;
font-size: 1.75em;
font-weight: normal;
}
img {
max-width: 45%;
margin: 2.5%;
}
2 Answers

Landon Morgan
11,877 PointsFor example. If an unordered list was inside a section element. The unordered list filling parent means it would take up the same amount of width as the section element itself takes up.

Dmitriy An
11,795 PointsThanks, got it
Jenna Dercole
30,224 PointsJenna Dercole
30,224 PointsHey Dmitriy,
Really what you need to know is that the percentage you assign to any element's max-width property will refer to how wide you want that element to be in reference to whichever element it's nested in.
For example, the <body> element would be the parent of the img here, as the img is nested within it:
So if you assign img's max-width property to be 45%, that image will only take up 45% of the body's defined width.
Hopefully this helps!