Ref: https://atomiks.github.io/tippyjs/
The z-index seems not be working when specifying interactive:true
(then it falls behind other elements) although I specify the #main_container
. How can I get it "on front of everything" with interactive:true
?
delegate( '#main_container', {
target: '[data-tippy-content]', allowHTML: true,
interactive: true, placement: 'right', theme: 'light', zIndex: 99999
} );
see also here: https://github.com/projectje/bookmark for the above code. I made a temporary workaround by placing a BR behind every first character so that it will not flow over other boxes. But this is really a short-term workaround.