I can't figure this out... I want to create a style for my H3 tags. How do I create a link style for my H3 tags so there is no text-decoration? Thanks for the help!
Keep in mind that you can also change the header's various anchor states too: h3 a {} /* Applies to all states unless changed below */ h3 a:link {} h3 a:visited {} h3 a:hover {} h3 a:active {} Code (markup): Tip: Here's an easy way to remember the above order, which is important: Love/Hate (LVHA - Link Visited Hover Active)
You forgot :focus Another one, which Jason Beaird coined, is "Lord Vader's Handle Formerly Anakin" (which covers :link :visited :hover :focus :active in that order).