3 回答
TA贡献2037条经验 获得超6个赞
如果您使用的是JS + SVG版本,请阅读以下内容:使用JS + SVG版本时,Font Awesome 5显示空白
首先,您只需使用以下命令在head标签中包含Font Awesome 5的CSS文件:
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
或在CSS文件中:
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css")
然后,您需要更正字体系列和内容,如下所示:
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");
.fp-prev:before {
color:#000;
content: '\f35a'; /* You should use \ and not /*/
font-family: "Font Awesome 5 Free"; /* This is the correct font-family*/
font-style: normal;
font-weight: normal;
text-decoration: inherit;
}
<i class="fp-prev"></i>
附带说明:Font Awesome 5 font-family
为每包图标提供3种不同的显示方式:
Font Awesome 5 Free
免费图标。
Font Awesome 5 Brands
适用于Facebook,Twitter等品牌图标。
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");
.fp-prev:before {
color:#000;
content: "\f099";
font-family: "Font Awesome 5 Brands";
font-style: normal;
font-weight: normal;
text-decoration: inherit;
}
<i class="fp-prev"></i>
Font Awesome 5 Pro for the Font Awesome Pro
In some cases, you have to adjust the value of the font-weight like detailed here: Font Awesome 5 on pseudo elements shows square instead of icon
- 3 回答
- 0 关注
- 962 浏览
相关问题推荐
添加回答
举报