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 trialvandevski
20,617 Points[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
39,199 PointsHere's a hint, all pseudo-classes begin with a :
(a colon).
Mark Flavin
10,199 PointsHere is a list of common pseudo selectors for links:
a:link {
? declarations
}
a:visited {
? declarations
}
a:focus {
? declarations
}
a:hover {
? declarations
}
a:active {
? declarations
}
vandevski
20,617 Points@ James & Mark
Thank you both, I got it right this time ;)
Chris Hall
Full Stack JavaScript Techdegree Student 11,442 PointsI used a:link and it told me it was wrong..
Leonard Foster
14,806 Pointsyeah me to am I supposed to use curly braces?
Stanislav Beneš
13,465 Points:link
enjoy