hallo leute,
ja wie das Thema schon verrät habe ich ein Problem bei meiner Navigation.
Schaut euch den Screenshot an, er erklärt sich von selber.
[Blockierte Grafik: http://amigo89.podspot.de/files/abstand.JPG]
Ich möchte keinen Abstand haben, es soll direkt an den anderen Elementen links anliegen.
Hier mein Code:
CSS
Code
#navcontainer
{
text-align: justify;
padding:0px;
margin:0px;
float:left;
}
#navcontainer ul li
{
list-style-type: none;
padding: 0px;
margin: 0px;
display: block;
float: left;
background: url("http://xhtmlforum.de/images/normal.gif") repeat-x 20px;
font-size:11px;
font-family: verdana;
text-align: center;
line-height:20px;
}
#navcontainer a
{
text-indent:0px;
color: #000;
text-decoration: none;
display: block;
width: 70px;
float:left;
border-top: 1px solid #A8B090;
border-bottom: 1px solid #A8B090;
border-left: 1px solid #A8B090;
}
#navcontainer li#active { background: url("http://xhtmlforum.de/images/hover.gif") repeat-x 20px; }
#navcontainer a:hover { background: url("http://xhtmlforum.de/images/hover.gif") repeat-x 20px; }
Alles anzeigen
HTML
ZitatAlles anzeigen
<table border=1>
<td id="navcontainer">
<ul>
<li id="active">START
[*]NEWS
[*]Item three
[*]Item four
[*]Item two
[*]Item three
[*]Item four
[*]Item three
[*]Item four[*]Item five
[/list]
</td>
</table>
Ich hoffe Ihr könnt mir weiterhelfen.
Mfg amigo