Bootstrap 3 - modal disappearing below backdrop when using a fixed sidebar

前端 未结 3 1812
陌清茗
陌清茗 2021-01-01 06:28

I have indentified this problem as happening due to the popup getting enclosed in another div with position:fixedthat I cannot avoid due to a fixed sidebar feat

3条回答
  •  感动是毒
    2021-01-01 06:44

    Best solution: Using firebug to view z-index of sidebar, example: 1000 we insert file css this code:

    .modal-backdrop
    {
     z-index: 1100;
    }
    .modal
    {
     z-index: 1200;
    }
    

提交回复
热议问题