How we display hyperlinks without an underline
| A:link { text-decoration: none } ----- for normal, unvisited links, no underline;
A:active { text-decoration: none } --- active is for link appearance while you're clicking. A:visited { text-decoration: none } --- visited is for previously visited links. |
|
