Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Dropdown Issue Re: CSS Dropdown Issue

#103010
Taufik Nurrohman
Participant
header nav ul li ul {
width:200px;
list-style:none;
background:#F00;
position:absolute;
left:-999em;
top:100%;
display:block;
}

header nav ul li ul li {
float:none;
display:block;
width:auto;
position:relative;
}

header nav ul li:hover ul {
color:blue;
position:absolute;
left:0;
display:block;
}