Hallo,
ich versuche mich gerade an einer Navi mit CSS.
Hier hab ich 2 Fragen:
1. Warum ändert sich bei A:hover nicht der komplette Hintergrund
2. Warum steht der Text in der Vorschau oben und nicht in der Mitte. In der Exploreransicht ist er jedoch zentriert
Hier der Code:
WÄre super wenn mir das jemand erklären könnte.
PS: Komplexe Beispiele hab ich schon gesehen(Mit divs h1, ul usw.). Mir geht es nur um das Verständnis.
Danke und Gruß
ich versuche mich gerade an einer Navi mit CSS.
Hier hab ich 2 Fragen:
1. Warum ändert sich bei A:hover nicht der komplette Hintergrund
2. Warum steht der Text in der Vorschau oben und nicht in der Mitte. In der Exploreransicht ist er jedoch zentriert
Hier der Code:
HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
<style type="text/css">
.nav {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:x-small;
color:#000000;
background-color:#e1e3e8;
width:110px;
height:35px;
text-align:center;
}
:link { color: #000000; text-decoration: none;}
A:link { color: #000000; text-decoration: none; }
A:visited { color: #000000; text-decoration: none;}
A:active { color: #ffffff; text-decoration: none; background-color:#f8f8f8; color:#333333;}
A:hover { color: #ffffff; text-decoration: none; color:#333333; background:#f8f8f8;}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" width="770" align="center">
<tr>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
<td class="nav"><a href="" style="width:110px; height:35px;">Test1</a></td>
</tr>
</table>
</body>
PS: Komplexe Beispiele hab ich schon gesehen(Mit divs h1, ul usw.). Mir geht es nur um das Verständnis.
Danke und Gruß