SportGoofy
New member
Bastel gerade an einem Navigationsmenü mit CSS herum.
Läuft auch schon ganz gut. Aber hab trotzdem ne Frage.
Wenn ich mit Hoover auf der Maus bin ändert der Text wie gewünscht seine Farbe.
Wollte mal fragen, ob man auch den Hintergrund (das graue der ganzen Tabellenzelle - Nicht Texthintergrund)
bei hoover ändern kann .
Hier ein Beispiel:
Läuft auch schon ganz gut. Aber hab trotzdem ne Frage.
Wenn ich mit Hoover auf der Maus bin ändert der Text wie gewünscht seine Farbe.
Wollte mal fragen, ob man auch den Hintergrund (das graue der ganzen Tabellenzelle - Nicht Texthintergrund)
bei hoover ändern kann .
Hier ein Beispiel:
Code:
<HTML>
<head>
<style type="text/css">
tr {background-color:#cccccc; font-size: 10pt; text-align:center}
a:link { font-weight:bold; color:#0000E0; text-decoration:none }
a:visited { font-weight:bold; color:#000080; text-decoration:none }
a:hover { font-weight:bold; color:#E00000; text-decoration:none }
a:active { font-weight:bold; color:#E00000; text-decoration:none }
a:focus { font-weight:bold; color:#00E000; text-decoration:none }
</style>
</head>
<Body>
<Center>
<table>
<tr>
<td height="20"><a href="m1.htm" target="main">Link1</a> </a></td>
</tr>
<tr>
<td height="20"><a href="m2.htm" target="main">Link2</a> </a></td>
</tr>
</Table>
</Center>
</Body>
</Html>