I have a modal window which consists this div
:
-
Just do one thing. Check the z-index of your modal popup & set the tooltip z-index +1 of your modal popup z-index.
so it would be like
.tooltip{
z-index:( z-index of modal popup + 1 );
}
讨论(0)
-
Try without comma before !important:
.tooltip{
z-index: 1151 !important;
}
讨论(0)
-
this worked for me.
.tooltip{
z-index: 1 !important;
}
讨论(0)