Font Awesome icons not working in OSX Safari

后端 未结 7 1988
栀梦
栀梦 2021-02-13 18:26

My font-awesome icons are working fine in Firefox and Chrome, but in Safari I just see blank space for some of them but not others. Screenshot:

7条回答
  •  礼貌的吻别
    2021-02-13 18:31

    In my case I had the wrong font family for brand icons.

    My old CSS:

    font-family: "FontAwesome";
    

    My new (working) CSS:

    font-family: "Font Awesome 5 Brands";
    font-weight: 900;
    

    This should help anyone who is using old code & has issues displaying brand icons (Twitter, Facebook etc)

提交回复
热议问题