Ich hoffe ihr könnt mir auf die Sprünge helfen.
Ich bastel jetzt schon den ganzen Tag an einem CSS-Drop-Down Menue rum und an irgendeinem Punkt den ich nicht mehr nachvollziehen kann hat es plötzlich nur noch einen der Punkte dargestellt. Diesen allerdings an der korrekten Stelle und voll funktionsfähig - es fehlen halt nur plötzlich die restlichen.
Ich komm nicht dahinter warum...
hier mal der Code:
- Code: Alles auswählen
#menuebox
{
position:absolute;
left: 200px; top:35px;
height: 30px;
}
.stupidie
{
display: none;
}
#menue
{
position:absolute;
left: 200px; top:35px;
top: 5px;
left: 0;
z-index: 200;
}
#menue .aussen
{
position:absolute;
left: 200px; top:35px;
color:#4682B4;
font-size:13px;
text-decoration:none;
display: block;
overflow: hidden;
width: 8em;
height: 1.3em;
text-align: center;
background-color: #ffffff;
border: none;
border-color: none;
}
#menue .aussen:hover
{
height: auto;
background-color: #ffffff;
color: #4682B4;
}
a.innen-1
{
margin-top: 2px;
}
a.innen, a.innen-1
{
display: block;
width: 7.9em;
padding: 2px 0;
text-decoration: none;
font-weight: normal;
border-bottom: none;
background-color: #ffffff;
color: #4682B4;
}
a:visited.innen, a:visited.innen-1
{
background-color: #ffffff;
color:#4682B4;
}
a:hover.innen, a:hover.innen-1
{
background-color: #ffffff;
color: #483D8B;
}
span.menutag
{
display: block;
cursor: default;
}
und das zugehörige html:
- Code: Alles auswählen
<div>
<div>
<span>home</span>
<a>blog</a>
<a>impressum</a>
</div>
<div>
<span>links</span>
</div>
<div>
<span>fotos</span>
</div>
<div>
<span>irc</span>
</div>
<div>
<span>buecher</span>
<a>Trudi Canavan</a>
<a>Wolfgang Hohlbein</a>
<a>Lynn Flewelling</a>
</div>
</div>
