我输入以下代码:
a::before {
content: "\f061";
font-family: FontAwesome;
}
但是font-awesome图标没有显示,只是一个空方块。
有什么问题?
谢谢!
答案 0 :(得分:0)
@TemaniAfif可能会有所帮助。
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
@import url("https://use.fontawesome.com/releases/v5.2.0/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;
}
答案 1 :(得分:0)
尝试一下,它对我有用:)
webp