doiuse
Version:
Lint CSS for browser support against caniuse database
13 lines (11 loc) • 485 B
JavaScript
/**
* Variable fonts
* OpenType font settings that allows a single font file to behave like multiple fonts: it can contain all the allowed variations in width, weight, slant, optical size, or any other exposed axes of variation as defined by the font designer. Variations can be applied via the `font-variation-settings` property.
* @see https://caniuse.com/variable-fonts
*/
/**
* @type {import('../features').Feature}
*/
export default {
'font-variation-settings': true,
};