作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何让下划线仅适用于 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/
我是一名优秀的程序员,十分优秀!