Hallo,
warum um alles in der Welt zentriert er mir untenstehend meine Navigation nicht?! 0px auto ist doch richtig?! Sobald ich einen Wert wie 50px nehme funktioniert ist..Bitte helft mir....
HTML
warum um alles in der Welt zentriert er mir untenstehend meine Navigation nicht?! 0px auto ist doch richtig?! Sobald ich einen Wert wie 50px nehme funktioniert ist..Bitte helft mir....
Code:
/*START NAVI*/
#navi ul {
list-style : none;
width : 400px;
height : 44px;
margin-left: 0px auto;
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
}
#navi ul li {
float : left;
margin-left : 0px auto;
}
#navi ul li a {
float : left;
margin : 0;
padding : 8px 5px 0 15px;
color : #999;
font-weight : 600;
font-size : 10px;
height : 32px;
text-shadow:#fff 0 1px 0;
text-decoration: none;
}
#navi ul li a:hover, #nav ul li a:active {
color : #a86f16;
text-decoration : none;
text-shadow: #fff 0 1px 0;
}
#navi {
list-style : none;
height : 44px;
margin-left: auto;
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
text-align: center;
}
HTML
Code:
<div id="navi">
<ul>
<li id="current"><a href="index.html">START</a></li>
<li><a href="profil.html">PROFIL</a></li>
<li><a href="leistungen.html">LEISTUNGEN</a></li>
<li><a href="kontakt.html">KONTAKT</a></li>
</ul>
</div>