tutorial 4: applying CSS to links
watch it on YouTube
New CSS Covered
- a:link
- tag + pseudo-class that can be used to apply style to the unvisited link view of an a tag
- a:hover
- tag + pseudo-class that can be used to apply style to a link when the mouse hovers over it
- a:visited
- tag + pseudo-class that can be used to apply style to a link after it has been visited by the user
- text-decoration:
- property used to style text. Valid values include underline, overline,
and line-through
- [selector example] nav a
- you can select elements within containers by using this type of selector. List the container first, a
space, and then the tag within the container.