CSS font-variant-east-asian

The font-variant-east-asian property allows you to control glyph substitution and sizing in East Asian text.

The font-variant-east-asian property is one of the properties introduced in CSS3 for enabling various font related features that can improve the appearance of the text on the page. The font-variant-east-asian property deals specifically with glyph substitution and sizing in East Asian text such as Japanese and Chinese.

Syntax

The syntax of the font-variant-east-asian property is:

These values are explained in more detail below.

Possible Values

normal
Specifies that none of the features below are enabled.
east-asian-variant-values

This can be one of the following values:

normal
None of the features listed below are enabled.
jis78
Enables rendering of JIS78 forms (OpenType feature: jp78).
jis83
Enables rendering of JIS83 forms (OpenType feature: jis83).
jis90
Enables rendering of JIS90 forms (OpenType feature: jis90).
jis04
Enables rendering of JIS04 forms (OpenType feature: jis04).
simplified
Enables rendering of simplified forms (OpenType feature: smpl).
traditional
Enables rendering of traditional forms (OpenType feature: trad).
east-asian-width-values

This can be one of the following values:

full-width
Enables rendering of full-width variants (OpenType feature: fwid).
proportional-width
Enables rendering of proportionally-spaced variants (OpenType feature: pwid).
ruby

Enables display of ruby variant glyphs (OpenType feature: ruby).

In addition, all CSS properties also accept the following CSS-wide keyword values as the sole component of their property value:

initial
Represents the value specified as the property's initial value.
inherit
Represents the computed value of the property on the element's parent.
unset
This value acts as either inherit or initial, depending on whether the property is inherited or not. In other words, it sets all properties to their parent value if they are inheritable or to their initial value if not inheritable.

General Information

Initial Value
normal
Applies To
All elements
Inherited?
Yes
Media
Visual
Animatable?
No

Example Code

Official Specifications

Browser Support

Browser support for CSS properties can vary, particularly for newer or experimental features. Check current browser compatibility before using a property in production, especially when supporting older browsers.

Initial Value

CSS properties have an initial value that applies when the property has not been explicitly set. The initial value is different from the value inherited from a parent element and may vary between properties.

Inheritance

Some CSS properties inherit their computed value from their parent element by default, while others do not. The inherit, initial, unset, and revert keywords can also be used to control how a property gets its value.

Vendor Prefixes

Most modern CSS properties use the standard, unprefixed syntax. Vendor-prefixed properties such as -webkit- are mainly relevant to older browser versions or specific features and should only be used when required by your browser support targets.