mouse over ...

Dark_BROTOSS

Gesperrt
hi,
wie schaffe ich es, wenn ich in einen der 4 <td>´s (mouse over) gehe das sich der hintergrund für alle 4 <td>´s ändert, egal in welchen feld sich meine mouse befindet, die ganze reihe also soll einmal komplett neu gefärbt werden.
mal n blödes bsp:
<td id="1">haha</td>
<td id="2">haha</td>
<td id="3">haha</td>
<td id="4">haha</td>
</tr>
<tr>
<td colspan="4" onMouseOver="this.style.background-Color=('1','2','3','4')">haha1</td>

ihr versteht was ich meine :-)

mfg dark...
 
Hi,
mach es so z.B.
PHP:
<table cellpadding="5" cellspacing="0">
<tr onMouseOver="this.style.backgroundColor='#ff0000';" onMouseOut="this.style.backgroundColor='#ffff00';" bgcolor="#ffff00">
	<td>Text1</td>
	<td>Text2</td>
</tr>
</table>

gruss xollo
 

Neue Beiträge

Zurück