I have an iframe with an inherited pointer-events: none; but when I have inserted a inside the iframe with a pointer-events: auto
pointer-events: none;
inside the iframe with a pointer-events: auto
pointer-events: auto
Don't give the whole iframe pointer-events: none. Just inside the iframe put a CSS rule body * { pointer-events: none;}
pointer-events: none
iframe
body * { pointer-events: none;}
This way the iframe does not block events, however elements inside the iframe are not clickable.