gpt4 book ai didi

css - 单击时如何更改链接颜色?

转载 作者:行者123 更新时间:2023-12-02 05:33:29 24 4
gpt4 key购买 nike

:active仅在用户仍按住鼠标时更改颜色。

例如:

black (click) > blue (release) > black



相反,我需要:

black (click) > blue (release) > blue



有没有办法用 CSS 做到这一点?编辑:我应该提到我不希望浏览器设置访问链接的样式,所以我不能使用 :visited .

最佳答案

您可以使用 tabindex 的组合属性和 :focus选择器到你的 anchor 元素。
http://jsfiddle.net/dcNzt/
HTML

<a href="#" tabindex="1">Stays blue</a>
CSS
a {   
color: black;
}

a:active {
color: blue;
}

a[tabindex]:focus {
color:blue;
outline: none;
}

关于css - 单击时如何更改链接颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17479912/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com