我需要通过css禁用链接,如果链接可见并且持有有效的' href'属性值?
HTML:
<a class="theLink" href="https://ebay.com">link</a>
的CSS:
.theLink{...?}
答案 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;
}