Hi,
ich bin totaler Neueinsteiger in Sachen HTML / CSS. Ich versuche gerade zur Übung eine einfache Navigation mit Mouseover zu erstellen. Das Problem ist, die Links haben rechts und links einen kleinen Rand der sich nicht mit färbt, wenn man mit der Maus rüberfährt. Und außerdem wüsste ich gerne, wie ich die Links ganz zusammen fügen kann, ohne die Lücken dazwischen. Ich poste hier einfach mal CSS udn HTML code, wenn Fehler drin sind, bitte einfach sagen ;).
danke schonmal
[code]ul#navi li {
text-decoration: none;
font-style: normal;
display: inline;
margin: 0,6px;
padding: 6px;
background: #000;
font-family: "Georgia";
font-size: 0.8em;
}
a:link {
text-decoration: none;
font-style: normal;
color: #fff;
margin: 0,6px;
padding: 6px;
background-color: #000;
}
a:visited {
text-decoration: none;
font-style: normal;
color: #fff;
margin: 0,6px;
padding: 6px;
}
a:hover {
text-decoration: none;
font-style: normal;
background-color: #818181;
margin: 0,6px;
padding: 6px;
}[/code]
[code]
Page