Make Links Not Clickable in CSS

pointer-events:none

MDN

a {
pointer-events: none;
}

This would make all links unclickable. Cool.

Leave a comment