i dont know if this is possible so here it goes...
i have a TD
<td width="20%" onMouseOver="" id="tdFile">
<div class="FontText"><a onclick="self.location='default.asp'">File</a></div>
</td>
what i want to do is, if i move my mouse(onMouseOver) in that particular TD i want to apply a particular CSS on that TD only.
heres the CSS
.Menu
{
border-right: #CCCCCC 1px outset;
border-top: #CCCCCC 1px outset;
border-left: #CCCCCC 1px outset;
border-bottom: #CCCCCC 1px outset;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
color: #000000;
font-family: Arial;
background-color: #CCCCCC;
}
is this possible? if yes hope you can show me.
btw, that particular CSS is located in a .CSS file and not embedded on the asp page.