How to make a div that has pointer-events none?

I want to make a div that has hover event with pointerEvents: none
(can be hovered but not prevent clicking div ‘under’ the hovered div)
How do i do this?

Hi @extra_yak, the only way to do this currently is by using the custom CSS embed - you can define a class with this and apply it to the elements you want

I don’t think you can have pointer-events:none and support hovering… but you could have two nested divs instead, the outer one with hovering, and the inner one with pointer-events:none