Bootstrap tooltip showing behind modal window

旧巷老猫 提交于 2019-12-03 06:22:56

Try without comma before !important:

.tooltip{
  z-index: 1151 !important;
}

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 );
}

this worked for me.

.tooltip{
  z-index: 1 !important;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!