The best way I know to make a div not clickable with CSS is to use:
pointer-events: none,
But then the cursor will always be the default one:
pointer-events: none;
cursor: not-allowed; // THIS WON'T DO ANYTHING
Is there a way to achieve both in CSS (and hopefully without Javascript)? Setting just the cursor
will show the div as not clickable while it still is.