我必须创建一个嵌套菜单,但我面临的问题是子菜单只显示在父级内部,并且创建了一个水平滚动(向右滚动可以看到子菜单) 目前我正在使用的CSS是
position: relative;
list-style: none;
right: 100%;
left: auto;
padding: 10px;
width: 200px;
height: 250px;
overflow-y: scroll;
display: none;
text-align: left;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
答案 0 :(得分:0)
参考本准则:
#templatemo_menu
{
clear: both;
width: 960px;
height: 50px;
background: url(../images/templatemo_menu_bg.gif) repeat-x;
}
#templatemo_menu ul li{
text-align: center;
display: inline-block;
position: relative;
}
#templatemo_menu ul ul
{
display: none;
position:absolute;
}
#templatemo_menu ul ul ul
{
left:100%;
top :-10px;
}
#templatemo_menu ul li:hover >ul
{
display:block;
padding:0;
margin-top:5px;
}