entweder so:
Code:
<tr>
<td onmouseover="this.style.background='
url(../zelle26select.jpg)'" onmouseout="this.style.background='
url(../zelle26.jpg)'">
Text
</td>
</tr>
oder so:
Code:
<style type="text/css" rel="stylesheet">
<!--
td.norm
{
background-image:
url(../zelle26.jpg);
}
td.over
{
background-image:
url(../zelle26select.jpg);
}
//-->
</style>
<tr>
<td class="norm" onmouseover="this.class='over'" onmouseout="this.class='norm'">
Text
</td>
</tr>
Die erste Methode geht auf jeden Fall, nur bei der Zweiten bin ich mir allerdings nicht mehr ganz sicher.