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 trialBryan Ramirez
15,089 PointsNext, create a new selector that targets an a element if its href value ends with ".html". Set its text-decoration to no
Im having trouble can someone please assist me?
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color: lightblue;
}
a[href^=".html-"] {
text-decoration: none;
}
6 Answers
Alain Ghiai
4,287 PointsHi bryan, -^ tells the browser to match a piece of code thatβs at the beginning of an attribute's value.
However, -$ matches a piece at the end of an attribute's value.
/* Complete the challenge by writing CSS below */
img[title^="product-"] { border-color: lightblue; }
a[href$=".html"] { text-decoration: none; } And don't forget to remove the "-" in a[href$='.html']
Hope this helped you.
johnadi
3,690 Pointsa[href$=".html"]{ text-decoration: none; }
Dominic High
5,163 PointsNote to anyone else that is having trouble with the code. The Workspace editor is very precise. If there is any or too much space between words, targets,etc it will return an incorrect result. I actually spent 10 minutes trying to figure out this problem and the issue was that I didn't have everything typed close enough together.
Jonathon Hyland
5,016 Pointsa[href$=".html"]{ text-decoration: none; }
Takunda Mapanga
9,863 Pointsa[href$=".html"]{ text-decoration: none; }
Christopher Diaz
10,320 Pointsimg[title^="product-"] { border-color: lightblue;} a[href$=".html"]{ text-decoration: none; }
Bryan Ramirez
15,089 PointsBryan Ramirez
15,089 Pointsyes it did thank you very much.