Multilevel Nav Menu not showing 3rd level

后端 未结 1 1372
半阙折子戏
半阙折子戏 2021-01-14 08:47

the third level of my menu doesn\'t show up when hovering the 2nd level. I know that this is because overflow:hidden is styled on the 2nd level ul

相关标签:
1条回答
  • 2021-01-14 09:30

    Add overflow:visible when hovering over the ul element. In doing so, the transition will still take place because the overflow is hidden prior to hovering over the element.

    Updated Example

    #menu ul li > ul:hover {
        overflow:visible;
    }
    
    0 讨论(0)
提交回复
热议问题