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

CSS

I still have to scroll across to view all of my image even tho I have set the max width in css?

Hello, I have added my own images to my HTML page, they are larger than the example images. When I put them all inside a div element and then set the max-width to 940px in css, I still have to scroll across to view them. Does setting this max-width not make it so that my images fit inside the browser without scrolling across?

2 Answers

Hi sarah

if you post your code i would be able to check where you are going wrong.but below will achieve what your trying to do.

#wrapper{
   width:940px;
   margin:0 auto;
}
img{
  max-width:100%;
}
<div id="wrapper">
<img src="your path" alt="sometext">
</div>

in this example the img width will be 940px or 100% of the parent div.

Hi my code is the same as above but without the img part as I have not got to that bit, so that must be the problem! Thanks