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

sean purdy
sean purdy
2,770 Points

stuck on css task here unsure what to do??

Ok so im unsure what ihave missed here...

style.css
/* Complete the challenge by writing CSS below */
img[title*="product-"] {
  border: lightblue;
}
sean purdy
sean purdy
2,770 Points

Oh wait it should be "src" instead of title but i was just experimenting to see if that would work aswell

1 Answer

Greg Kaleka
Greg Kaleka
39,021 Points

Hi Sean,

The challenge asks you to "Create a selector that targets an img element if its title value begins with "product-". Set the border color to lightblue."

You're using the contains selector, *, but should be using the begins with selector, ^.

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