禁用 html a link

创建日期: 2024-02-24 13:04 | 作者: 风波 | 浏览次数: 11 | 分类: 前端

来源:https://css-tricks.com/how-to-disable-links/

.isDisabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.isDisabled > a {
  color: currentColor;
  display: inline-block;  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}

<span class="isDisabled"><a href="https://unfetteredthoughts.net">Disabled Link</a></span>
11 浏览
11 爬虫
0 评论