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 trial

CSS CSS Selectors Going Further with Attribute Selectors and Pseudo-Classes Substring Matching Attribute Selectors Challenge

Next, 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?

style.css
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
  border-color: lightblue;
}

a[href^=".html-"] {
  text-decoration: none;
}

6 Answers

Hi 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.

yes it did thank you very much.

a[href$=".html"]{ text-decoration: none; }

Dominic High
Dominic High
5,163 Points

Note 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
Jonathon Hyland
5,016 Points

a[href$=".html"]{ text-decoration: none; }

Takunda Mapanga
Takunda Mapanga
9,863 Points

a[href$=".html"]{ text-decoration: none; }

img[title^="product-"] { border-color: lightblue;} a[href$=".html"]{ text-decoration: none; }