sorunum ss de gördüğünüz gibi yardımcı olursanız sevinirim.
CSS kodlarım aşağıda:
.menu{
list-style-type:none;
margin:0;
padding:0;
width:750px;
height:35px;
background-color:grey;
float:left;
}
.menu a{
width:auto;
height:35px;
font-size:15px;
color:white;
padding-left:20px;
padding-right:20px;
line-height:35px;
float:left;
}
.menu a:hover{
background-color:green;
}
.menu li{
position:relative;
list-style-type:none;
width:auto;
float:left;
}
.menu li ul{
position:absolute;
width:auto;
height:auto;
top:35px;
margin:0;
padding:0;
display:none;
background-color: orange;
}
.menu li:hover ul{
display: block;
}
HTML Kodları: