Frage zu Mousemove?

  • Themenstarter Themenstarter SilverVegeto
  • Beginndatum Beginndatum
S

SilverVegeto

Hy,
ich möchte gerne einen Link machen der wie hier auf der seite ist. Ich meine damit die Navigationsleiste Links.
Ich möchte auch das eine Tabbelle ausgefüllt wird und das wort in einer anderen Farbe steht. Wie mach ich das?
Danke im Voraus.
 
Das ist in dem Fall CSS.

Du musst den Link einfach mit display: block; versehen, dann nimmt er die ganze Breite ein.
Und dann kannst du ganz normale CSS Hover-Links machen:
Code:
a.Menu {
  display: block;
  background-color: #123456;
  color: #000000;
}

a.Menu:hover {
  background-color: #654321;
  color: #FFFFFF;
}
 
Meinst du das so?

Code:
<html>
<head>
<title>xxxxxxx</title>
</head>
<style type="text/css">
a.Menu {
  display: block;
  background-color: #123456;
  color: #000000;
}

a.Menu:hover {
  background-color: #654321;
  color: #FFFFFF;
}
</style>

<body bgcolor="#E5E5E5" onLoad="" scroll="yes">

<table>
  <tr> 
    <td><a href="test.htm" class="display: block;">link</a></td>
  </tr>
</table>

</body>
</html>

Das funktioniert nicht?
 
Meinst du das so?
Nein *sigh*

Code:
<html>
  <head>
    <title>Foobar</title>

<style type="text/css">
a.Menu {
  display: block;
  background-color: #123456;
  color: #000000;
}

a.Menu:hover {
  background-color: #654321;
  color: #FFFFFF;
}
</style>
  </head>
  <body>
    [...]
        <td><a href="test.htm" class="Menu">link</a></td>
    [...]
  </body>
</html>
 

Neue Beiträge

Zurück