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

Marco Mancera
Marco Mancera
4,188 Points

i'm trying to solve this with the next code but is not working correctly... is this a bug?

Solution:

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

Problem:

it keeps saying if i'm adding the border-color:lightblue to the code...

style.css
/* Complete the challenge by writing CSS below */
img [title^="product-"] { border-color: lightblue; }

1 Answer

Matthew Tran
Matthew Tran
16,343 Points

You're about to be very upset, haha. Everything is perfect except for the space right after the word img. To use this syntax in selecting certain images, it has to be one fluid string. Take out your first space between img and [title^="product-"] and you'll pass

img[title^="product-"] { 
     border-color: lightblue; 
}
Marco Mancera
Marco Mancera
4,188 Points

omg xD haha thanks a lot :D