Firefox webfonts not loading

前端 未结 7 998
既然无缘
既然无缘 2021-01-03 22:30

I\'m having an issue with webfonts only in Firefox, all other browsers (including IE) work perfectly.

My issues is that the webfonts won\'t load at all.

I\'v

7条回答
  •  余生分开走
    2021-01-03 23:27

    After scouring stackoverflow trying every suggestion and not having them work I found out what was wrong with my code that after fixing, made it work. I had left out the commas between font declarations.

    I had

    font-family: "GiveMeTime" sans-serif;
    

    instead of

    font-family: "GiveMeTime", sans-serif;
    

    and as it worked in every other browser I didn't notice the error. Anyone else with this problem, check it's not a simple font stack error!

提交回复
热议问题