font-variant-east-asian
Quick Summary for font-variant-east-asian
The font-variant-east-asian CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.
Code Usage for font-variant-east-asian

<pre class="brush: css notranslate"><code><span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> normal<span class="token punctuation">;</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> ruby<span class="token punctuation">;</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> jis78<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> jis83<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> jis90<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> jis04<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> simplified<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> traditional<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-variant-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> full-width<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-width-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> proportional-width<span class="token punctuation">;</span> <span class="token comment">/ &lt;east-asian-width-values&gt; /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> ruby full-width jis83<span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">font-variant-east-asian</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for font-variant-east-asian

font-variant-east-asian

The font-variant-east-asian CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese.

font-variant-east-asian: normal; font-variant-east-asian: ruby; font-variant-east-asian: jis78;              /* <east-asian-variant-values> */ font-variant-east-asian: jis83;              /* <east-asian-variant-values> */ font-variant-east-asian: jis90;              /* <east-asian-variant-values> */ font-variant-east-asian: jis04;              /* <east-asian-variant-values> */ font-variant-east-asian: simplified;         /* <east-asian-variant-values> */ font-variant-east-asian: traditional;        /* <east-asian-variant-values> */ font-variant-east-asian: full-width;         /* <east-asian-width-values> */ font-variant-east-asian: proportional-width; /* <east-asian-width-values> */ font-variant-east-asian: ruby full-width jis83;  /* Global values */ font-variant-east-asian: inherit; font-variant-east-asian: initial; font-variant-east-asian: revert; font-variant-east-asian: unset; 

Syntax

Values

normal

This keyword leads to the deactivation of the use of such alternate glyphs.

ruby

This keyword forces the use of special glyphs for ruby characters. As these are usually smaller, font creators often designs specific forms, usually slightly bolder to improve the contrast. This keyword corresponds to the OpenType values ruby.

<east-asian-variant-values>

These values specify a set of logographic glyph variants which should be used for display. Possible values are:

Keyword Standard defining the glyphs OpenType equivalent
jis78 JIS X 0208:1978 jp78
jis83 JIS X 0208:1983 jp83
jis90 JIS X 0208:1990 jp90
jis04 JIS X 0213:2004 jp04
simplified None, use the simplified Chinese glyphs smpl
traditional None, use the traditional Chinese glyphs trad
<east-asian-width-values>

These values control the sizing of figures used for East Asian characters. Two values are possible:

proportional-width activating the set of East Asian characters which vary in width. It corresponds to the OpenType values pwid. full-width activating the set of East Asian characters which are all of the same, roughly square, width metric. It corresponds to the OpenType values fwid.

Formal definition

Initial valuenormal
Applies toall elements. It also applies to ::first-letter and ::first-line.
Inheritedyes
Computed valueas specified
Animation typediscrete

Formal syntax

normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]

where <east-asian-variant-values> = [ jis78 | jis83 | jis90 | jis04 | simplified | traditional ]<east-asian-width-values> = [ full-width | proportional-width ]

Examples

Setting East Asian glyph variants

This example require font "Yu Gothic" installed in your OS, other fonts may not support OpenType features.

HTML
<table> <thead></thead> <tbody style="border:0;">   <tr>     <th>normal/jis78:</th>     <td>麹町</td>     <td class="jis78">麹町</td>   </tr>   <tr>     <th>normal/ruby:</th>     <td>しんかんせん</td>     <td class="ruby">しんかんせん</td>   </tr>   <tr>     <th>normal/traditional:</th>     <td>大学</td>     <td class="traditional">大学</td>   </tr> </tbody> </table> 
CSS
td{   font-family:"Yu Gothic";   font-size:20px; } th{   color:grey;   padding-right:10px; }  .ruby {   font-variant-east-asian: ruby; }  .jis78 {   font-variant-east-asian: jis78; }  .traditional{   font-variant-east-asian: traditional; } 
Result

Specifications

Specification
CSS Fonts Module Level 4 # font-variant-east-asian-prop

See Also

font-variant-alternates font-variant-caps font-variant font-variant-ligatures font-variant-numeric

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
“If you just sit and observe, you will see how restless your mind is. If you try to calm it, it only makes it worse, but over time it does calm, and when it does, there’s room to hear more subtle things. You see so much more than you could see before. It’s a discipline; you have to practice it.”
Steve Jobs
Latest News
## 🚀 AI Giants Hit Bullseye: Anthropic & OpenAI Achieve Product-Market Fit Anthropic and OpenAI have reached a significant milestone, finding product-market fit with their AI technologies, which means their products effectively meet the needs of their customers, driving growth and adoption. This achievement showcases the practical value of their innovations, enabling businesses and individuals to leverage AI for enhanced productivity and efficiency. With this alignment of product and market needs, these companies are poised to transform industries and shape the future of technology.