Get rid of that ugly outline that shows up around your hyperlinks when they are clicked on.
Every hyperlink creates an outline that only rears its ugly head when someone clicks on a link. Type the following style directly into your style sheet and get rid of this unwanted eyesore.
* {
outline:
none;
}
That's all there is to it! The asterisk is how we indicate a Universal Selector. The Universal Selector applies the style to all page elements. This way, we only need to write the one style for the entire web site.
Special Instructions: You will need to write this Style Declaration Directly onto your External Style Sheet.