无法在父块旁边的单独块中显示子菜单

时间:2016-04-18 07:26:57

标签: html css

我必须创建一个嵌套菜单,但我面临的问题是子菜单只显示在父级内部,并且创建了一个水平滚动(向右滚动可以看到子菜单) 目前我正在使用的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);

https://jsfiddle.net/g0kujLqk/

1 个答案:

答案 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;
}