css fordobler automatisk farvekoder med 3 tegn ...
Så vil du have mere specifikke koder skal du selvfølgelig bruge dem ,-)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><HTML>
<HEAD>
<TITLE>Tabel m. hover-borders</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript" type="text/javascript">
function skiftFarve(elm, textfarve, kantfarve, id){
elm.style.color=textfarve;
elm.style.borderBottomColor=kantfarve;
elm.style.borderRightColor=kantfarve;
document.getElementById(id).style.color=textfarve;
}
</script>
</HEAD>
<BODY style="width:50%">
<BR>
<TABLE cols="2" style="widht:50%">
<tr>
<TD WIDTH="10%" style="border:1px solid #fff">Ingen skygge </TD>
<TD width="40%" style="border:1px solid #fff" onmouseover="skiftFarve(this,'#f00','#f00','mitLink')" onmouseout="skiftFarve(this,'#000','#fff','mitLink')"><a id="mitLink" href="#" style="color:inherit">Her er noget med skygge</A></td>
</TR>
</TABLE>
</BODY>
</HTML>