font-synthesis-weight

基线 2023

新发布

2023 年 3 月起,此功能在最新设备和浏览器版本中都能正常工作。此功能可能无法在旧设备或浏览器中正常工作。

**font-synthesis-weight** CSS 属性允许您指定浏览器是否可以在缺少字体系列中的粗体字体时合成粗体字体。

通常使用简写属性 font-synthesis 来控制所有字体合成值。

语法

css
/* Keyword values */
font-synthesis-weight: auto;
font-synthesis-weight: none;

/* Global values */
font-synthesis-weight: inherit;
font-synthesis-weight: initial;
font-synthesis-weight: revert;
font-synthesis-weight: revert-layer;
font-synthesis-weight: unset;

auto

指示如果需要,浏览器可以合成缺少的粗体字体。

none

指示不允许浏览器合成缺少的粗体字体。

正式定义

初始值auto
适用对象所有元素和文本。它也适用于 ::first-letter::first-line
继承
计算值如指定
动画类型离散

正式语法

font-synthesis-weight = 
auto |
none

示例

禁用粗体字体合成

此示例显示了在 Montserrat 字体中关闭浏览器对粗体字体的合成。

HTML

html
<p class="english">
  This is the default <strong>bold typeface</strong> and
  <em>oblique typeface</em>.
</p>

<p class="english no-syn">
  The <strong>bold typeface</strong> is turned off here but not the
  <em>oblique typeface</em>.
</p>

CSS

css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.english {
  font-family: "Montserrat", sans-serif;
}
.no-syn {
  font-synthesis-weight: none;
}

结果

规范

规范
CSS 字体模块级别 4
# font-synthesis-weight

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。

另请参阅