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 trialJoseph Choi
1,445 PointsPlease tell me what I'm doing wrong: img[title^="product-"] { border-color:lightblue; }
It keeps telling me that I'm not setting the border colors right... I believe the system is wrong. Please help.
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color:lightblue;
}
2 Answers
Steven Parker
231,198 PointsThis looks correct to me. You might want to report this as a bug to Support.
nitin suresh
5,691 PointsThere is a different attribute selector to match hyphen, - (U+002D):
/* Complete the challenge by writing CSS below */
img[title|="product"] {
border-color:lightblue;
}
[attr|=value] Represents an element with an attribute name of attr whose value can be exactly value or can begin with value immediately followed by a hyphen, - (U+002D). It is often used for language subcode matches.
Steven Parker
231,198 PointsThat's not what this challenge is asking for (and it also does not pass).
nitin suresh
5,691 Pointsnitin suresh
5,691 PointsJust now I tried the challenge. There seems to be a bug