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 trialRachel Allison
5,736 Pointsomg!
this is driving me crazy, i know this is right why isn't it working???
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color: lightblue;
}
a[href^=".html"] {
text-decoration: none;
}
2 Answers
Salman Akram
Courses Plus Student 40,065 PointsHi Rachel,
I find ^
symbol which is not correct, I assume we should use $ symbol for the question - "Next, create a new selector that targets an a element if its href value ends with ".html". Set its text-decoration to none."
-^ tells the browser to match a piece of code thatβs at the beginning of an attribute's value
-$ matches a piece at the end of an attribute's value.
-* matches any part of an attribute's value
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color: lightblue;
}
a[href$=".html"] {
text-decoration: none;
}
hadleylambeth
13,946 PointsYou need to put a $ for your second question because it is suppose to be "ENDS" with not begins with. so . . a[href$=".html"] { text-decoration: none; }