css:如何禁用单击链接的功能

时间:2015-10-29 12:17:56

标签: html css

我需要通过css禁用链接,如果链接可见并且持有有效的' href'属性值?

HTML:

<a class="theLink" href="https://ebay.com">link</a>

的CSS:

.theLink{...?}

2 个答案:

答案 0 :(得分:1)

.thisLink{
   pointer-events: none;
   cursor: default;
}

这是example

答案 1 :(得分:1)

是的,你可以禁用它!

HTML:

<a class="theLinkDisabled" href="https://google.com">link</a>
<br>
<a class="theLinkActive" href="https://google.com">link</a>

的CSS:

.theLinkDisabled{
    pointer-events: none;
    cursor:default;
}

.theLinkActive{
    pointer-events: auto;
    cursor:pointer;
}