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 trialMilton Fox
5,288 Pointsimg [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)?
/* Complete the challenge by writing CSS below */
img [title^="product-"] {
border-color: lightblue;
}
2 Answers
Marcus Parsons
15,719 PointsHey Milton,
You can't have a space between the main selector and the attribute selector.
img[title^="product-"] {
border-color: lightblue;
}
Milton Fox
5,288 PointsThanks Marcus, They say "the devil is in the detail" and so it was!! Worked great!!
Marcus Parsons
15,719 PointsHaha yes it was! :D You're welcome!