FontFace.family

The FontFace.family property allows the author to get or set the font family of a FontFace object. This is equivalent to the font-family descriptor of @font-face.

Value

A DOMString.

Examples

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

BCD tables only load in the browser