font-variant-position
Quick Summary for font-variant-position
The font-variant-position CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.
Code Usage for font-variant-position

<pre class="brush: css notranslate"><code><span class="token comment">/ Keyword values /</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> normal<span class="token punctuation">;</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> sub<span class="token punctuation">;</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> super<span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">font-variant-position</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for font-variant-position

font-variant-position

The font-variant-position CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript.

The glyphs are positioned relative to the baseline of the font, which remains unchanged. These glyphs are typically used in <sub> and <sup> elements.

/* Keyword values */ 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: revert; font-variant-position: unset; 

When the usage of these alternate glyphs is activated, if one character in the run doesn't have such a 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, and have no effect on the line-height and other box characteristics.

Syntax

The font-variant-position property is specified as one of the keyword values listed below.

Values

normal

Deactivates alternate superscript and subscript glyphs.

sub

Activates subscript alternate glyphs. If, in a given run, one such glyph is not available for a character, all the characters in the run are rendered using synthesized glyphs.

super

Activates superscript alternate glyphs. If, in a given run, one such glyph is not available for a character, all the characters in the run are rendered using synthesized glyphs.

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 | sub | super

Examples

Setting superscript and subscript forms

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

Specifications

Specification
CSS Fonts Module Level 4 # font-variant-position-prop

See Also

font-variant-alternates font-variant-caps font-variant-east-asian font-variant-ligatures font-variant-numeric

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)Français日本語中文 (简体) Change language

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

Please dont do this! 😜


Unknown Web Developer
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.