Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. FontFace
  4. lineGapOverride

FontFace: lineGapOverride property

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Note: This feature is available inWeb Workers.

ThelineGapOverride property of theFontFace interface returns and sets the value of theline-gap-override descriptor.The possible values arenormal, indicating that the metric used should be obtained from the font file, or a percentage.

Value

A string.

Examples

js
let fontFace = new FontFace(  "Roboto",  'url("https://fonts.example.com/roboto.woff2")',  { lineGapOverride: "90%" },);console.log(fontFace.lineGapOverride); // 90%fontFace.lineGapOverride = "normal";console.log(fontFace.lineGapOverride); // 'normal'

Specifications

Specification
CSS Font Loading Module Level 3
# dom-fontfacedescriptors-linegapoverride

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp