css/javascript 选择链接样式
我有一些被某些边界包围的链接。悬停时,链接变为白色。我的代码:
#product_unavailable_types a:hover {
border-color: #fff;
我希望
这些边框在选择后也将保持白色。我的意思是,如果我点击该链接,边框将保持上述样式。我不知道该怎么做。
有什么线索吗?
谢谢你!
i have some links that are surrended by some borders. on hover, the links are made white. my code:
#product_unavailable_types a:hover {
border-color: #fff;
}
i would like that those borders will remain white after the selection also. i mean, if i click on that link, the borders will stay with the above style. and i have no idea how to do it.
any clue?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在搜索
a:visited
伪类。这意味着:
编辑
如果链接没有引导您到另一个页面,请尝试将其放入
head
元素中:然后添加
onclick
属性到您的a
元素,使其看起来像:You are searching for the
a:visited
pseudo class.That means:
EDIT
If the link doesn't lead you to another page, try to put this in the
head
element:Then, add the
onclick
attribute to youra
element, so that it looks like: