因此,我有一个列表,无法确定如何更改其内容的显示格式,以使UL的宽度和高度自动调整到LI内容的大小。

我更新了小提琴:jsfiddle.net/devin85/tMYxT/7 ...

将鼠标悬停在2级项目上将说明我的问题-
 “公交车站”
 “雇员”
 “围栏”
 “汽车”

感谢您的协助。

德文

最佳答案

您将子菜单的高度限制为32px;
修复CSS(第32行):

#navigation .submenu {
display: none;
position: absolute;
top: 32px;
left: 0px;
background-color: transparent;
white-space: nowrap;
width: auto;
height: auto;
}

10-06 00:31