View Full Version : links options


bloo_moon
01-06-2006, 09:19 AM
A:hover {text-decoration: overline underline; COLOR: #2A1E04; cursor: crosshair; font-weight: bold}

I dont like that part of the code

what else could i do there? make it move or invert colours? what is that called? hehe

thanks in advance :)

djou
01-06-2006, 11:53 AM
text-decoration is, well, the "decoration" of the text. overline underline puts a line under the text and one over it.

http://www.w3schools.com/css/pr_text_text-decoration.asp

Its other values can be none (no decoration), underline (self-explanatory), overline (opposite of underline), line-through (which I don't recommend, because it puts a line accross the text).

Arwen
01-06-2006, 01:49 PM
You forgot to add ; to your code.

A:hover {text-decoration: overline underline; COLOR: #2A1E04; cursor: crosshair; font-weight: bold;}

Just to let you know. :)