【发布时间】:2021-01-28 16:22:51
【问题描述】:
我无法从 :before 元素中删除下划线。
从图片中可以看出,我在焦点事件期间设置了链接的下划线,但我希望只有文本下划线而不是图标。
这是图标的代码:
a:before {
content: "\f058";
font-family: FontAwesome;
}
这是焦点效果的代码:
a:focus{
text-decoration:underline;
}
我尝试了类似的方法,但没有成功。
a:before:focus {
text-decoration:none;
}
【问题讨论】:
-
display:inline-block 到前面
标签: css pseudo-class