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

JavaScript CSS Selectors Quickstart CSS Selector Basics Class Selectors

Typo on https://teamtreehouse.com/library/css-selectors-quickstart/css-selector-basics/class-selectors

Just FYI: on https://teamtreehouse.com/library/css-selectors-quickstart/css-selector-basics/class-selectors , under the heading "Classes are Reusable", your HTML has multiple examples of <img> tags, like the example below:

<img class="thumbnail" src="thumb-01.jpg" alt="..." /> <img class="thumbnail" src="thumb-02.jpg" alt="..." /> <img class="thumbnail" src="thumb-03.jpg" alt="..." />

But the CSS code says:

.img-thumbnail { width: 150px; }

The typo could be confusing. Please remove "img-" so that it says:

.thumbnail { width: 150px; }

(or update the <img> tags so that their classes are "img-thumbnail". Either/or)

2 Answers

Steven Parker
Steven Parker
229,732 Points

When I look at that page, I see that the examples do show class="img-thumbnail".

If it wasn't like that 3 hours ago, you probably deserve an "Exterminator" badge! :wink:
You may want to write the Support folks to remind them if you're certain it was different before.

Thanks Steven Parker , it definitely wasn't like that earlier, someone must have fixed it. Thanks for the update!