出于某种原因,我必须在<a>标签中包装我的图标。 有任何可能的方法来改变字体的颜色,令人敬畏的图标为黑色? 或者只要它被包装在<a>标签中就不可能了?字体很棒应该是字体而不是图像,对吧?
<a href="/users/edit"><i class="icon-cog"></i> Edit profile</a>
出于某种原因,我必须在<a>标签中包装我的图标。 有任何可能的方法来改变字体的颜色,令人敬畏的图标为黑色? 或者只要它被包装在<a>标签中就不可能了?字体很棒应该是字体而不是图像,对吧?
<a href="/users/edit"><i class="icon-cog"></i> Edit profile</a>
当前回答
只要给和文本样式任何你想要的:D HTML:
<a href="javascript:;" class="fa fa-trash" style="color:#d9534f;">
<span style="color:black;">Text Name</span>
</a>
其他回答
写这段代码在同一行,这改变图标的颜色:
<li class="fa fa-id-card-o" style="color:white" aria-hidden="true">
这招对我很管用:
.icon-cog {
color: black;
}
对于4.7.0以上的字体Awesome版本,它看起来是这样的:
.fa-cog {
color: black;
}
有时在外部css文件中改变颜色不起作用。您可以在图标标签中添加内联css属性,这将工作。
例如
<i class=“fa-solid fa-keyboard” style=“color: grey;”></i>
你可以通过使用css color属性改变前景色来改变fontawesome图标的颜色。以下是一些例子:
<i class="fa fa-cog" style="color:white">
这也支持svgs
<style>
.fa-cog{
color:white;
}
</style>
<style>
.parent svg, .parent i{
color:white
}
</style>
<div class="parent">
<i class="fa fa-cog" style="color:white">
</div>
有任何可能的方法来改变字体的颜色,令人敬畏的图标 黑色的吗?
是的,有。看这被剪掉的波纹管
<!——假设你没有,这需要在你的HTML文件(通常是头)——> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!——这是你需要使用的——> <a href="/users/edit" class="fa fa-cog" style="color:black">编辑配置文件</a> .
字体很棒应该是字体而不是图像,对吧?
是的,它是一种字体。因此,您可以将其扩展到任何大小而不损失质量。