Möchte in einer tabelle einen einzeiligen onmouseover haben der auch über spalten hinweg functioniert hab es bisher wie folgt funktioniert aber nur spaltenweise hab auch mal ver sucht onmousover in <tr> einzutragen macht er aber auch net hat einer nen vorschlag
PHP-Code:
<table width='100%' border='1' bordercolor='#008000' >
<tr>
<td width='25%' height='20' align='center' bgcolor="#000000" onmouseover="this.bgColor='#330099'"
onmouseout="this.bgColor='#000000'"></td>
<td width='25%' height='20' align='center' bgcolor="#000000" onmouseover="this.bgColor='#330099'"
onmouseout="this.bgColor='#000000'"></td>
<td width='25%' height='20' align='center' bgcolor="#000000" onmouseover="this.bgColor='#330099'"
onmouseout="this.bgColor='#000000'"></td>
<td width='25%' height='20' align='center' bgcolor="#000000" onmouseover="this.bgColor='#330099'"
onmouseout="this.bgColor='#000000'"></td>
</tr>
</table>
Kommentar