MENU
Navigation Selectors
a:link: all unvisited links
a:visited: all visited links
a:hover: links on mouseover (after :link and :visited)
a:active: the active link (must come after :hover)
#anc:target: the element containing the clicked anchor
:target:the element with id matching the URL's fragment
RESETRUNFULL
<!DOCTYPE html><html><head>
<style>
div:hover p{
font-size:30px;
}
</style>
</head><body style="height:80px">
<div>
<p>Enlarge me</p>
</div>
</body></html>