HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

font-feature-settings

Description

The font-feature-settings property for CSS provides low-level control over OpenType font features.

Syntax

CSS

font-feature-settings: value;

JS

object.style.fontFeatureSettings = "value";

Values

<'font-feature-settings'> = normal | <feature-tag-value>#
normal

No change in glyph selection or positioning occurs.

<feature-tag-value> = <string> [ <integer> | off | on ]?
<string>

Specifies a sequence of characters delimited by double quotes (") or single quotes (').

<integer>

Specifies one or more decimal digits (0-9).

off

Synonymous with 0.

on

Synonymous with 1.

Initial

normal

Examples

1 · integer

2 · normal

3 · off

4 · on

5 · string

6 · JS