我可以使用以下样式设置超棒的字体图标,效果很好:
.my-title:before{
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f568";
}
但是我既不能设置Facebook图标也不能设置Instagram图标。例如,“ f082”是Facebook的内容:
.my-title:before{
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f082";
}
即使删除字体粗细或将其更改为400也无法使用。
谢谢。