PDA

View Full Version : is there a css shorthand way for this


KevinG
01-17-2006, 05:09 PM
a.top:link {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
color: #999999;
text-decoration: underline;
}
a.top:visited {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
color: #999999;
text-decoration: underline;
}
a.top:active {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
color: #999999;
text-decoration: underline;
}
a.top:hover {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
color: #999999;
text-decoration: underline;
}

mark87
01-17-2006, 05:10 PM
Yes.

a.top {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
color: #999;
text-decoration: underline;
}

KevinG
01-17-2006, 05:12 PM
'king hell that was quick.

cheers mark

mark87
01-17-2006, 05:14 PM
lol no problem. :)