To disable clicking inside div with CSS, we set the pointer-events style to none.
For instance, we write
div#foo {
pointer-events: none;
}
to set the pointer-events CSS property to none for the div with ID foo. to disable clicking on the div with ID foo.