PDA

View Full Version : Overline underline code


00XxXxX00
03-02-2003, 03:55 PM
How can I get this code to be text decorqtion "none" but on a hover have underline overline decoration?

<html>
<head>
<style type="text/css"><!--
a:link {color:ffffff;}
a:visited {color:ffffff;}
a:active {color:ffffff;}
a:hover{color:0099cc;
background-color:000000;}
--></style>
</head>

excaliber
03-02-2003, 04:01 PM
I believe what you need to do is this....

a:hover
{
color:0099cc;
background-color:000000;
text-decoration: overline underline;
}

:)

pb&j
03-02-2003, 05:01 PM
Originally posted by 00XxXxX00
How can I get this code to be text decorqtion "none" but on a hover have underline overline decoration?

<html>
<head>
<style type="text/css"><!--
a {text-decoration:none;}
a:link {color:ffffff;}
a:visited {color:ffffff;}
a:active {color:ffffff;}
a:hover{color:0099cc;
text-decoration:underline overline;
background-color:000000;}
--></style>
</head>

cg9com
03-02-2003, 07:16 PM
hmmm ... (http://www.codingforums.com/showthread.php?s=&threadid=14372) ;)