font-synthesis-small-caps

基线 2023

新功能

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

**font-synthesis-small-caps** CSS 属性允许您指定浏览器在缺少小写字体的字族中是否可以合成小写字体。小写字形通常使用大写字母的形式,但尺寸缩小到小写字母的大小。

通常可以使用速记属性 font-synthesis 来控制所有字体合成值。

语法

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

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

auto

表示如果需要,浏览器可以合成缺失的小写字体。

none

表示不允许浏览器合成缺失的小写字体。

正式定义

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

正式语法

font-synthesis-small-caps = 
auto |
none

示例

禁用小写字体合成

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

HTML

html
<p class="english">
  These are the default <span class="small-caps">small-caps</span>,
  <strong>bold</strong>, and <em>oblique</em> typefaces.
</p>

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

CSS

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

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

结果

规范

规范
CSS 字体模块 Level 4
# font-synthesis-small-caps

浏览器兼容性

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

另请参阅