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 trialIvelina Ventsislavova Stoilova
4,985 PointsCreate a selector that targets an img element if its title value begins with "product-". Set the border color to lightbl
My code is wrong- any ideas what is the issue?
/* Complete the challenge by writing CSS below */
A [img='product-'] {
border-color: lightblue;
}
3 Answers
Dane Andrade
13,081 Points/* Complete the challenge by writing CSS below */
img[title^="product-"] { border-color: lightblue; }
[attr^=value] Represents elements with an attribute name of attr whose value is prefixed (preceded) by value.
Conor Vanoystaeyen
16,687 PointsI think is more in the line of
img[title='...'] {
...: ...;
}
Bet css is not my best subject.
caleb McCauley
4,430 PointsI used this and it worked: img[title^="product-"] { border-color: lightblue; }