Hi, ich habe ein Problem mit dem Dropdown Menue.
Ich wollte alles untereinander angezeigt haben und die unterpunkte sollen dadrunter aufgehen, aber iwie haut das nicht hin.
[HTML]
*{
margin: 0px;
padding: 0px;
}
ul#nav{
width: 300px;
height: 300px;
float: left;
display: inline;
}
ul#nav li.navi{
display: inline-block;
postion: relative;
}
ul#nav ul{
display: none;
}
ul#nav li:hover ul{
display: inline;
position: absolute;
}
ul#nav li.navi ul li{
display: inline;
width: 100%;
height: 20%;
}
ul{
display: inline;
background-color: #222;
border-radius: 5%;
margin: 0%;
float: left;
font-size: 122%;
}
ul li:hover{
background-color: green;
}
a{ color: orange;}
</style>
[/HTML]
ich danke euch