I am trying to override the pointer-events property for the containing div. It works in everything except IE 11. Presumably, the event-pointer property was added in IE 11. For some reason, it will not be canceled.
.divstyle { pointer-events: none; } .buttonstyle { pointer-events: auto; } <div class="divstyle"> <table> <tr><td> <input type="button" class="buttonstyle" value="test"> </td></tr> <tr><td> </td></tr> <tr><td> </td></tr> </table> </div>
The entire div does not allow pointer events, including a button. I would think that since the div has no events at all, IE supports property event pointers, but when I explicitly set a child for events, it will not allow this for some reason. Thanks for the help!
source share