CSS: Block click events and mouse events for links (default style for ending hyperlinks to appear on hover)

Prevents the default link event on mouseover and removes the underline effect. This willprevent the link from changing color on hover or having other default styles.

a:hover {
    pointer-events: none; /* 阻止链接的点击事件和鼠标事件 */
    text-decoration: none; /* 移除链接的下划线效果 */
}

Guess you like

Origin blog.csdn.net/weixin_46001736/article/details/134779790