gpt4 book ai didi

css - 结合:after with :hover for text-decoration of a font icon

转载 作者:行者123 更新时间:2023-12-03 20:28:24 24 4
gpt4 key购买 nike

如何让下划线仅适用于 a 元素而不适用于 :after 的内容?

使用下面的 CSS 可以控制 :hover 上的 :after 元素的颜色。但是,text-decoration 不能更改。

这是说明问题的 jsfiddle:

http://jsfiddle.net/JfGVE/500/

这是 CSS:

a {
color: green;
text-decoration: none;
}
a:hover {
color: green;
text-decoration: underline;
}
a:after {
font-family: FontAwesome;
content: "\f061";
}

a:hover:after {
color: orange;
text-decoration: none !important;
}

最佳答案

设置伪元素为display: inline-block will remove the text decoration :

a:after {
font-family: FontAwesome;
content: "\f061";
display: inline-block;
}

下划线仍然适用于中间的空格,因为你有一个  ,不过,你可以通过 offsetting the pseudo-element with a margin instead of putting hard spaces in the HTML 来防止这种情况发生。 .

关于css - 结合:after with :hover for text-decoration of a font icon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30503765/

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