Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
td.blubb a {
display:block;
background-color:#A70000;
line-height:18px;
}
td.blubb a:hover {
display:block;
background-color:#990000;
line-height:18px;
}
<table>
<tr>
<td style="background-color:[FARBE];" onMouseOver="this.style.backgroundColor = '[FARBE BEIM DRÜBERFAHREN]';" onMouseOut="this.style.backgroundColor = '[URSPRÜNGLICHE FARBE]';">
[INHALT]
</td>
</tr>
</table>
<table>
<tr>
<td style="background-color:gold;" onMouseOver="this.style.backgroundColor = 'lightblue';" onMouseOut="this.style.backgroundColor = 'gold';">
Das ist der Inhalt der Tabellenspalte
</td>
</tr>
</table>