Bootstrap Tooltip working but hidden due to z-index?

后端 未结 8 1220
孤城傲影
孤城傲影 2021-01-31 14:03

If you hover over the first pencil, you can see the tooltip coming up but it\'s hidden.

How can I tell all tooltips to show up above everything else?

Relevant c

8条回答
  •  独厮守ぢ
    2021-01-31 14:55

    Just set the tooltip position to fixed, like this:

    .tooltip {
        position: fixed;
    }
    

    See working demo

提交回复
热议问题