CSS - font-variant-position

The font-variant-position CSS property controls the usage of alternate glyphs of smaller size positioned as superscript or subscript regarding the baseline of the font, which is set unchanged. These glyphs are likely to be used in <sub> and <sup> elements.

Examples

Example1

HTML
<p class="normal inline" >Normal!</p>
<p class="super inline" >Super!</p>
<p class="sub inline" >Sub!</p>
 
CSS
 p{
       display: inline;
       
}
.normal {
  font-variant-position: normal;
}
.super {
  font-variant-position: super;
}
.sub {
  font-variant-position: sub;
}

Results

Syntax  

CSS
font-variant-position: normal;
font-variant-position: sub;
font-variant-position: super;

/* Global values */
font-variant-position: inherit;
font-variant-position: initial;
font-variant-position: unset;

Values

normal
This keyword leads to the deactivation of the use of such alternate glyphs.
sub
This keyword forces the use of subscript alternate glyphs. If, in a given run, one such glyph is not available for a character, the whole characters in the run is rendered using synthesized appropriate glyphs.
super
This keyword forces the use of superscript alternate glyphs. If, in a given run, one such glyph is not available for a character, the whole characters in the run is rendered using synthesized appropriate glyphs.

Formal syntax

CSS
normal <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> sub <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> super

Description  

The font-variant-position CSS property controls the usage of alternate glyphs of smaller size positioned as superscript or subscript regarding the baseline of the font, which is set unchanged. These glyphs are likely to be used in <sub> and <sup> elements.

When the usage of these alternate glyphs is activated, if one character in the run doesn't have such typographically enhanced glyph, the whole set of characters of the run is rendered using a fallback method, synthesizing these glyphs.

These alternate glyphs share the same em-box and the same baseline as the rest of the font. They are merely graphically enhanced but have no effect on the line-height and other box characteristics.

Initial valuenormal
Applies toall elements. It also applies to ::first-letter and ::first-line.
Inheritedyes
Mediavisual
Computed valueas specified
Animatableno
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Specifications  

Specification Status Comment
CSS Fonts Module Level 3
The definition of 'font-variant-position' in that specification.
Candidate Recommendation Initial definition

 

Feature Firefox (Gecko) Chrome Internet Explorer Opera Safari (WebKit)
Basic support 34 (34) [1] ? ? ? ?
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support ? 34.0 (34)[1] ? ? ?

[1] Experimental implementation was available since Gecko 24. It was governed by the preference layout.css.font-features.enabled defaulting to true on Nightly and Aurora only.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/font-variant-position

CSS CSS Fonts CSS Property NeedsLiveSample Reference