I've searched around but can't pinpoint a solution. I have a vertical flyout (dropdown) menu written with CSS that is actually working fine in IE but isn't in Firefox. It works fine through the second set but the third won't show for some reason.
CSS
#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
float : left;
width : 11em;
}
#nav li { /* all list items */
position : relative;
float : left;
line-height : 1.25em;
margin-bottom : -1px;
width: 11em;
}
#nav li ul { /* second-level lists */
position : absolute;
left: -999em;
margin-left : 11.05em;
margin-top : -1.35em;
background-color: #003300;
}
#nav li ul ul { /* third-and-above-level lists */
position: absolute;
left: -999em;
}
#nav ul ul ul {
position: absolute;
left: -999em;
}
#nav li a {
width: 11em;
width : 10em;
display : block;
color : white;
font-weight : bold;
text-decoration : none;
border : none;
padding : 0 0.5em;
}
#nav li a:hover {
color : white;
background-color : black;
}
#nav li:hover ul ul, #nav li:hover ul ul ul {
left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul { /* lists nested under hovered list items */
left: auto;
display: block;
}
HTML
<ul id="nav"><li><a href="#" target="_blank">Course Articulations</a>
<ul><li><a href = "#" target="_blank">WV</a></li>
<ul><li><a href="" target="_blank">MCTC</a></li>
<li><a href="" target="_blank">SWVCTC</a></li>
<li><a href="" target="_blank">WVNCC</a></li>
</ul>
<li><a href = "#" target="_blank">KY</a></li>
<ul><li><a href="" target="_blank">ACTC</a></li></ul>
</ul>
</li><br /><br />
<li><a href="#" target="_blank" >2+2</a>
<ul><li><a href = "#" target="_blank">College of Business</a></li>
<ul><li><a href= "" target="_blank">ECJU</a></li></ul>
<li><a href = "#" target="_blank">College of Education</a></li>
<li><a href = "#" target="_blank">College of Fine Arts</a></li>
<li><a href = "#" target="_blank">College of Health Professions</a></li>
<li><a href = "#" target="_blank">College of Info Tech and Engineering</a></li>
<li><a href = "#" target="_blank">College of Liberal Arts</a></li>
<li><a href = "#" target="_blank">College of Science</a></li>
</ul></li>
</ul>