09.05.06

CSS and Links | multiple link schemes, hover effects || HTMLSource ]

Posted in Uncategorized at 9:08 pm by ryan

The last few years I’ve been fortunate to have a great team and unfortunate enough to suffer from too many meetings. As a result, I haven’t had much time to experiment much with basic things like Dreamweaver and Stylesheets. As much as I enjoy vi keystrokes, you would be crazy to build a website with vi instead of dreamweaver.

HTML Source - CSS and Links:

a.donkey:link {color: red; text-decoration: none; }
a.donkey:visited {color: purple; text-decoration: none; }
a.donkey:hover {color: orange; text-decoration: underline; }
a.donkey:active {color: blue; }

a.diddy:link {color: #0000ff; font-size: 18pt; font-weight: bold; }
a.diddy:visited {color: #894f7b; font-weight: bold; }
a.diddy:hover {text-decoration: overline; background-color: #003399; }
a.diddy:active {color: red; }

This site does a great job covering all of the CSS related to links in your HTML. If you’ve been waiting like me, take a look.

[posted with ecto]

Leave a Comment