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 Adding Pages to a Website Make an About Page

setting max width of img in css - challenge task 5 of 6 - not sure why I'm getting error msg

Here's the challenge task request:

Give the image a maximum width of 150 pixels and a border radius of 100%.

Here's the code I entered:

img { display: block; margin: 0 auto 30px; max-width: 150px; border-radius: 100%; }

Here's the error msg I got:

Bummer! Did you set the max width to 150px?

My response:

Yes, I attempted to do so. What's wrong with my code?

Thanks in advance for your help?

2 Answers

JAKZ AIZZAT
JAKZ AIZZAT
7,813 Points

You should select a proper selector because there are several element image in the html. So,you need to specific the selector location . The image have a class inside it,why not we use the selector through that class (.profile-photo)

.profile-photo{

   display:block;
   margin:0 auto 30px;
   max-width:150px;
   border-radius:100%;

}

Thanks Jakz. Selecting the class made the difference. :)

Thanks you helped a lot :)