gpt4 book ai didi

javascript - 如何高亮显示选中的链接?

转载 作者:行者123 更新时间:2023-11-30 09:39:11 31 4
gpt4 key购买 nike

下面的代码应该使选定的链接保持突出显示,但实际上并没有,它只会在单击时闪烁绿色。请帮我找出这里失败的原因。

#sidebarContent a:active{
background-color: green;
}
<div id="sidebarContent">
<ul>
<li style="margin-bottom:10px"><a style="outline:none" href="#">Manage</a></li>
<li style="margin-bottom:10px"><a style="outline:none" href="#">Links</a></li>
</ul>
</div>

最佳答案

你在href上没有链接,你需要设置foucs来改变颜色

#sidebarContent a:active , #sidebarContent a:focus{
background-color: green;
}
<div id="sidebarContent">
<ul>
<li style="margin-bottom:10px"><a style="outline:none" href="#">Manage</a></li>
<li style="margin-bottom:10px"><a style="outline:none" href="#">Links</a></li>
</ul>
</div>

关于javascript - 如何高亮显示选中的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42065138/

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