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

[Quiz] CSS Foundations (2nd edition) > Selectors

The following question gives me the statement incorrect, even if the answer is correct.

Fill in the blank below.

The [ link ] pseudo-class allows us to style links that have not yet been visited.

5 Answers

James Barnett
James Barnett
39,199 Points

Here's a hint, all pseudo-classes begin with a : (a colon).

Mark Flavin
Mark Flavin
10,199 Points

Here is a list of common pseudo selectors for links:

a:link {
  ? declarations
}
a:visited {
  ? declarations
}
a:focus {
  ? declarations
}
a:hover {
  ? declarations
}
a:active {
  ? declarations
}

@ James & Mark

Thank you both, I got it right this time ;)

yeah me to am I supposed to use curly braces?