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 trialsean purdy
2,770 Pointsstuck on css task here unsure what to do??
Ok so im unsure what ihave missed here...
/* Complete the challenge by writing CSS below */
img[title*="product-"] {
border: lightblue;
}
1 Answer
Greg Kaleka
39,021 PointsHi 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;
}
sean purdy
2,770 Pointssean purdy
2,770 PointsOh wait it should be "src" instead of title but i was just experimenting to see if that would work aswell