z-index issue with twitter bootstrap dropdown menu

后端 未结 12 2292
耶瑟儿~
耶瑟儿~ 2020-12-05 09:24

I\'m using twitter bootstrap dropdown menu in a fixed navbar at the top of my page.

It all works fine but am having issues with the drop down menu items showing behi

12条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-05 09:56

    This worked for me:

    .dropdown, .dropdown-menu {
      z-index:2;
    }
    .navbar {
      position: static;
      z-index: 1;
    }
    

提交回复
热议问题