Hallo,
ich bin zur Zeit am erstellen folgender Page!
http://danielsfotos.com
Hier soll eine horizontale Navigation sein, welche einen festen Hintergrund hat, ohne einzelne Buttons. Ich wollte mal fragen, ob es eine Möglichkeit gibt, die Navigationspunkte jeweils in deren übergeordnetes <li> - Element zu zentrieren, damit ich nicht mit padding herumspielen muss.
MfG
Code
/* NAVIGATION TOP */
div#navigation {
width: 600px;
height: 50px;
margin: 0;
background: url(../images/navigation_background.png) no-repeat;
font: "Myriad Pro", Arial, sans-serif;
font-size: 25px;
}
div#navigation ul {
list-style-type: none;
}
div#navigation li {
float: left;
clear: left;
position: relative;
line-height: 50px;
}
div#navigation a {
width: 100px;
display: block;
background: transparent;
text-decoration: none;
color: white;
}
div#navigation a:hover {
background: transparent;
color: #CCC;
text-decoration: none;
}
Alles anzeigen