Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialYeshaya Coffman
Full Stack JavaScript Techdegree Graduate 22,885 PointsI don't understand what the question means
Add CSS that will allow all images to fill their parent element I don't understand what that means
Radu Ioan Stochita
3,558 PointsAndrew, img is a self closing tag. You can't do that.
2 Answers
Radu Ioan Stochita
3,558 PointsThis refers to setting the width of the images to 100%.
Just enter this CSS code and everything should work fine:
img {
width: 100%;
}
I hope that it helps!
Sean T. Unwin
28,690 PointsThe question and answer is explained in the first video of this module ( 2 vids prior to this Challenge ) - https://teamtreehouse.com/library/how-to-make-a-website/styling-web-pages-and-navigation/style-the-portfolio - @2:30 - 3:15.
Andrew Taylor
11,500 PointsAndrew Taylor
11,500 PointsIt means that it either wants you to create a child element under the parent and then make sure it fits the parent or use an existing child element.
For example,
You can then add CSS by using the following,
Hope this helps!