如何获得“字体粗细:较轻”在 Google Chrome 中工作?

发布于 2024-08-30 07:17:42 字数 144 浏览 4 评论 0原文

在 Google Chrome(可能还有 Safari)中,“font-weight:normal”和“font-weight:bold”之间似乎没有任何区别。有没有人找到一种方法可以像 Firefox 那样在 Chrome 中调用“font-weight: Thing”?

There doesn't appear to be any difference between 'font-weight: normal' and 'font-weight: bold' in Google Chrome (and probably Safari). Has anyone found a way to invoke the 'font-weight: thinner' in Chrome the way that Firefox does?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

深海蓝天 2024-09-06 07:17:42

这似乎是已知问题 在最新开发版本中修复的 Chrome 中:

有一个 ​​临时解决方法 您还可以尝试:

要在未定义粗体字体的 @font-face 字体上启用 font-weight 属性,您需要显式定义 < @font-face 中的 code>font-weight:normal;font-style:normal;定义。示例:

@font-face {
    font-family: 'GriffosFont Regular';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/GriffosFont.eot');
    src: local('GriffosFont Regular'), local('GriffosFont'), url('fonts/GriffosFont.woff') format('woff'), url('fonts/GriffosFont.\
ttf') format('truetype'), url('fonts/GriffosFont.svg#GriffosFont') format('svg');
}

This appears to be a known issue in Chrome fixed in latest development builds:

There is a temporary workaround you can also try:

To enable the font-weight property on a @font-face font which doesn't have a bold font defined, you need to explicitly define font-weight:normal; and font-style:normal; in the @font-face definition. Example:

@font-face {
    font-family: 'GriffosFont Regular';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/GriffosFont.eot');
    src: local('GriffosFont Regular'), local('GriffosFont'), url('fonts/GriffosFont.woff') format('woff'), url('fonts/GriffosFont.\
ttf') format('truetype'), url('fonts/GriffosFont.svg#GriffosFont') format('svg');
}
谷夏 2024-09-06 07:17:42

也许您需要将其添加到 CSS 中:

* {-webkit-font-smoothing: antialiased;}

Maybe you need to add this to your CSS:

* {-webkit-font-smoothing: antialiased;}
旧人 2024-09-06 07:17:42

font-weight: lighter; 不适合我,所以我使用 font-weight: normal; 代替,这符合我的目的。不知道chrome现在怎么样了......

font-weight: lighter; was not working for me so I used font-weight: normal; instead, which worked for my purpose. not sure what's going on with chrome right now...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文