I've been facing an issue in my application where I need to disable an HTML anchor using CSS. I found a solution on Stack Overflow that works perfectly in Chrome and Firefox. However, when I tried it in Internet Explorer, the link could not be disabled. I've searched through multiple resources but haven't found a solution for Internet Explorer yet. If anyone has a helpful link or answer, please assist. Thank you in advance.
<a href="link.html" class="active">Link</a>
.active {
pointer-events: none;
cursor: default;
}