Archive for the tag 'hyperlink'

Remember to Love / Hate Links

Posted by Sadish

Ever wondered how to define styles for Hyperlinks ?
Well. There are four different selectors for a hyperlink.
You would normally see this at the top of the stylesheet.
a:link {text-decoration:none;color:#ff0000}
a:visited {text-decoration:none;color:#0000ff;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}
The first line defines that normal unvisited links will have ‘no underline’, and will look ‘red’ in color.
The second line says when a link is […]

Read Full Post »

Comments Off