我面临Open Sans @ font-face的问题。字符“ a”和“ e”似乎被弄乱了。请查看所附的屏幕截图,该屏幕截图仅在Windows浏览器中显示。谁能帮我?

我知道Google字体会删除此错误。但是我需要通过@ font-face包含

Open Sans @font-face a and e seemed to be messed.

最佳答案

从fonts.google.com添加Open Sans字体。
在html head标记中添加其链接。

注意:相应地添加字体粗细

例:
在html head标记中:

<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">


在CSS

font-family: 'Open Sans', sans-serif;


通过进入控制面板>字体> open sans删除PC中的Open sans字体

关于css - 使用@ font-face打开Sans Font问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44156024/

10-13 01:06