如何强制Chrome忽略本地安装的Google字体?

时间:2017-06-27 19:27:27

标签: google-chrome google-chrome-devtools

在开发中,我想测试Google字体是否在页面上正确加载。但是,Google字体总是为我加载,因为我已经在我的开发机器上本地安装了它。

有没有办法告诉浏览器忽略本地安装的字体,特别是在谷歌浏览器中?

2 个答案:

答案 0 :(得分:2)

我发现在Mac(OS X)上,我可以禁用Mac上标准的“Font Book”应用程序中的任何字体。 See screenshot

答案 1 :(得分:0)

删除本地字体要么将它们重命名为不同的字体。

我认为没有其他解决方案,因为Google在local('font name')中向src添加了@fontface

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(...) format('woff2');
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}