Movatterモバイル変換


[0]ホーム

URL:


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

FontFace: family property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨January 2020⁩.

Note: This feature is available inWeb Workers.

TheFontFace.family property allows the author to get or set the font family of aFontFace object.

The value is used for name matching against a particular font face when styling elements using thefont-family property.Any name may be used, and this overrides any name specified in the underlying font data.

This property is equivalent to thefont-family descriptor of@font-face.

Value

A string.

Examples

js
let fontFace = new FontFace(  "Roboto",  'url("https://fonts.example.com/roboto.woff2")',);console.log(fontFace.family); // 'Roboto'fontFace.family = "newRoboto";console.log(fontFace.family); // 'newRoboto'

Specifications

Specification
CSS Font Loading Module Level 3
# dom-fontface-family

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp