Prelims - CSS Links Flashcards

1
Q

can be styled with any CSS property (e.g. color, font-family, background, etc.)

A

Links

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In addition, links can be styled differently depending on what state they are in.

The four links states are

A

a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked

/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly