CSS ignore overflow: hidden

后端 未结 6 495
轻奢々
轻奢々 2020-12-30 00:09

I\'m working on the navigation for this website and am having trouble with the dropdown nav.

Basically, I have overflow: hidden applied

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-30 00:26

    if your container is set to "overflow: hidden;" and your dropdown menu is under this container, you just need to set "position: absolute;"

    .container {
      overflow: hidden;
    }
    
    .your_dropdown_menu {
      position: absolute;
    }
    

提交回复
热议问题