Menu
Styling Text & Links

CSS Links

Style <a> tags for different states.

1Link States

Target normal, visited, hover, and active states.

Example Code
a { color: blue; text-decoration: none; }
a:hover { text-decoration: underline; }
a:visited { color: purple; }

Finished reading?

Mark this topic as complete to track progress.