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 trial

HTML How to Make a Website CSS: Cascading Style Sheets Center the Wrapper

Why does the #wrapper not flex to the larger size of the contained images?

Why does the #wrapper, with a max-width: 940px; not flex to the larger size of the contained images that have a width of 1024px?

As the images inside #wrapper are bigger than this containing div I thought either the #wrapper might flex to the larger size or the images might be reduced to the smaller size.

2 Answers

Steven Parker
Steven Parker
229,785 Points

:point_right: The images are overflow-ing the wrapper.

If you want to cut off the part of the image that extends beyond the wrapper, you can set "overflow: hidden" on the wrapper.

If you'd rather have the image shrink to fit inside the wrapper, you can set "width: 100%" (or "max-width: 100%") on the image.

budoor ayhd
budoor ayhd
1,471 Points

Thank you so much :)

Thanks Steven.

I just wanted to know the mechanics of it and you've explained that. Your tweaks really help too.