- Home
- Style Sheets
- Fun CSS Tricks
Fun CSS Tricks
- By Jhon Mark
- Published 03/11/2007
- Style Sheets
- Unrated
Jhon Mark
View all articles by Jhon Mark
CSS or Cascading Style Sheets allow you to implement a few neat effects on your webpages easily. You can implement these CSS effects on your site by simply copying and pasting the code.
ROLLOVER COLOR TEXT LINKS
Have your text links change color when the mouse passes over them by inserting this code into the HEAD of your document:
< style type="text/css">
< /style>
LINKS WITH NO UNDERLINE
Remove the underline from any or all of the links on your page by putting this in the HEAD of your document:
< style type="text/css">
Or, remove the underline form individual links by forming them like this:
< a href="page.html" style="text-decoration: none">link< /a>
LINKS WITH A LINE ABOVE AND BELOW THEM
This is an interesting look that works especially well as a hover attribute for your links, but can also be applied to all of your links. It will show the normal underline and a line above the link:
< style type="text/css">
< /style>

