Last Updated: February 25, 2016
·
39.62K
· kewah

Disable mouse events with CSS 3

With CSS 3 it's possible to disable mouse events with

#elmt {
    pointer-events : none;
}

So like this we can target an element under another.

More infos
JsFiddle example