所以我有一个List并且无法想出如何更改它的内容的显示格式,以便UL的宽度和高度自动调整到LI内容的大小。
我更新了小提琴:jsfiddle.net/devin85/tMYxT/7 ...
将2级项目悬停将说明我的问题 - “巴士站” “雇员” “栅栏” “交通工具”
感谢您的帮助。
德文
答案 0 :(得分:2)
您将子菜单高度限制为32px; 修复css(第32行):
#navigation .submenu {
display: none;
position: absolute;
top: 32px;
left: 0px;
background-color: transparent;
white-space: nowrap;
width: auto;
height: auto;
}
答案 1 :(得分:1)
将此行添加到css代码的末尾:
#navigation .submenu .submenu { height:auto; }