How to prevent the click event using CSS?
How to prevent the click event using CSS ?
I have created the form page , then i need to prevent the click event using only CSS?
I have tried this css property, but not worked.
<div>Content</div>
div {
display: none;
}
You can try the css class:
.noClick {
pointer-events: none;
}