font-display descriptor determines how a font face is displayed based on whether and when it is downloaded and ready to use.

句法

/* Keyword values */
font-display: auto;
font-display: block;
font-display: swap;
font-display: fallback;
font-display: optional;
					

auto

The font display strategy is defined by the user agent.

block

Gives the font face a short block period and an infinite swap period.

swap

Gives the font face an extremely small block period and an infinite swap period.

fallback

Gives the font face an extremely small block period and a short swap period.

optional

Gives the font face an extremely small block period and no swap period.

描述

The font display timeline

The font display timeline is based on a timer that begins the moment the user agent attempts to use a given downloaded font face. The timeline is divided into the three periods below which dictate the rendering behavior of any elements using the font face.

Font block period
If the font face is not loaded, any element attempting to use it must render an invisible fallback font face. If the font face successfully loads during this period, it is used normally.
Font swap period

If the font face is not loaded, any element attempting to use it must render a fallback font face. If the font face successfully loads during this period, it is used normally.

Font failure period

If the font face is not loaded, the user agent treats it as a failed load causing normal font fallback.

形式定义

相关 at-rule @font-face
初始值 auto
计算值 如指定

形式句法

[ auto | block | swap | fallback | optional ]
					

范例

Specifying fallback font-display

@font-face {
  font-family: ExampleFont;
  src: url(/path/to/fonts/examplefont.woff) format('woff'),
       url(/path/to/fonts/examplefont.eot) format('eot');
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
					

规范

规范 状态 注释
CSS Fonts Module Level 4
The definition of 'font-display' in that specification.
工作草案 初始定义

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
font-display Chrome 完整支持 72 Edge 完整支持 79 Firefox 完整支持 58 IE 不支持 No Opera 完整支持 60 Safari 完整支持 11.1 WebView Android 完整支持 72 Chrome Android 完整支持 72 Firefox Android 完整支持 58 Opera Android 完整支持 51 Safari iOS 完整支持 11.3 Samsung Internet Android 完整支持 11.0

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: