"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Disable Links Using CSS?

How Can I Disable Links Using CSS?

Published on 2024-12-21
Browse:212

How Can I Disable Links Using CSS?

CSS Trick to Disable Links

Problem:

Is it possible to disable links using CSS? For instance, if you have a class called "current-page," you may want to prevent links with that class from being active when clicked.

Solution:

The following CSS code snippet offers a simple solution:

[aria-current="page"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

This code targets elements with the "aria-current='page'" attribute and disables their interactivity by setting "pointer-events" to "none." It also removes the typical link styling by setting "cursor" to "default," removing text decoration, and resetting the text color to black.

To apply this solution in HTML, you can modify your link as follows:

Link

This will disable the link and prevent it from being clickable when the "current-page" class is applied.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3