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 CSS Selectors Going Further with Attribute Selectors and Pseudo-Classes Substring Matching Attribute Selectors Challenge

Milton Fox
Milton Fox
5,288 Points

img [title^="product-"] { border-color: lightblue; } Why am I getting a Bummer! response for the correct response

In CSS Selectors Challenge Task 1 of 3 we are tasked with creating a selector whose title begins with "product-". Where is my answer wrong (I get a "Bummer" for the following question also)?

style.css
/* Complete the challenge by writing CSS below */

img [title^="product-"] {
  border-color: lightblue;
}

2 Answers

Hey Milton,

You can't have a space between the main selector and the attribute selector.

img[title^="product-"] {
  border-color: lightblue;
}
Milton Fox
Milton Fox
5,288 Points

Thanks Marcus, They say "the devil is in the detail" and so it was!! Worked great!!

Haha yes it was! :D You're welcome!