Eye of Design helps users find information on web design and development along with feature a gallary of works created by Gary R. Hess.

CSS Links

Using CSS for links is one of the most popular uses of the stylesheet. Removing the underline, changing a link's color or giving a link the hover effect while bring the cursor over it.

When using CSS to change links you may list all, one or just some of these:

  • a:active
  • a:link
  • a:hover
  • a:visited
Except when doing so, be sure to keep them in the correct order (which is the order as listed).

If you wish to set all properties at once, you may use: a { }. And if you wish to have all your settings the same except one or two, simply add those properties after a { }. Such as: a { text-decoration: none; } a:hover { text-decoration: underline; }