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 trialsekularacn
9,855 PointsStuck on Challenge Code - Substring Matching Attribute Selectors
Question: Create a new selector that targets an a element if its href value ends with ".html". Set its text-decoration to "none".
Any ideas where is my mistake?
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color: lightblue;
}
a[href&=".html"] {
text-decoration: none;
}
2 Answers
Jeffrey Lego
9,458 Pointsa[href$=".html"]
MUZ140298 Edson Vengesai
5,028 Pointsimg[title^="product-"]{
border-color:lightblue;}
a[href$=".html"]{ text-decoration: none; }
sekularacn
9,855 Pointssekularacn
9,855 Pointshaha, thanks, my mind confused those 2 :)