Skip to content Skip to sidebar Skip to footer

Z-index Not Setting In Bootstrap

I am using bootstrap and I have a modal that pops up and it works just fine only the .modal-dialog has a z-index of 0 even though it DOES get set. The .modal-backdrop.n has a z-ind

Solution 1:

The z-index only works on positioned elements. So set position: relative;, position: absolute;, or position: fixed;.


  • Please never use !important if possible!

Answer Source from sandeep.


Post a Comment for "Z-index Not Setting In Bootstrap"