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 trialCarleen Hall
Front End Web Development Techdegree Student 3,158 Pointsselector and target
My code is not working, can someone tell me what I am doing wrong? Thanks is advance
/* Complete the challenge by writing CSS below */
img[src^="product"]{
border-color: lightblue;
}
2 Answers
Chris Jardine
13,299 Pointsimg[title^="product-"] {
border-color: lightblue;
}
Chris Jardine
13,299 PointsHi Carleen Because they are asking for an img element if its "title" value begins with "product-". If they were asking if its "src" value begins with "product-" then you would have "src" instead of "title".
Good luck.
Carleen Hall
Front End Web Development Techdegree Student 3,158 PointsThanks Chris. I see where I was going wrong.
Carleen Hall
Front End Web Development Techdegree Student 3,158 PointsCarleen Hall
Front End Web Development Techdegree Student 3,158 PointsThanks Chris, It worked, but I'm still a little confused as to why I did not have to use the "src" seeing that it's an image.