gpt4 book ai didi

css - 如何添加:hover affects to fa-fa icons?

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:24 26 4
gpt4 key购买 nike

我找不到如何将伪 :hover 添加到“Font-awesome”图标(fa-fa 图标)。

如果有人能提供帮助,我将不胜感激。

HTML:

<a href="#" class="overview"><i class="fa fa-user fa-2x" style="margin-top:10px;"></i></a><br />
<a href="#" class="tier"><i class="fa fa-level-up fa-2x" style="margin-top:10px;"></i></a>

CSS:

.overview, .tier {
color: black;
}

a:hover {
color: red;
}

最佳答案

您发布的代码有效,但它还会为包含的任何文本着色。如果您只想在悬停图标时应用颜色,请像使用 a 标签一样将其放在类 fa 上。

.fa:hover { 
color: red
}

或者如果你想为每个图标指定它:

.fa-level-up:hover {
color: blue;
}

关于css - 如何添加:hover affects to fa-fa icons?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25712793/

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