font-variant
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
The font-variant
CSS shorthand property allows you to set all the font variants for a font.
You can also set the
values of font-variant
defined in CSS Level 2.1, (that is, normal
or small-caps
), by using the font
shorthand.
Try it
font-variant: normal;
font-variant: no-common-ligatures proportional-nums;
font-variant: common-ligatures tabular-nums;
font-variant: small-caps slashed-zero;
Difficult waffles
0O
3.14
2.71
@font-face {
font-family: "Fira Sans";
src:
local("FiraSans-Regular"),
url("/shared-assets/fonts/FiraSans-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
section {
font-family: "Fira Sans", sans-serif;
margin-top: 10px;
font-size: 1.5em;
}
#example-element table {
margin-left: auto;
margin-right: auto;
}
.tabular {
border: 1px solid;
}
Constituent properties
This property is a shorthand for the following CSS properties:
Syntax
font-variant: small-caps;
font-variant: common-ligatures small-caps;
/* Global values */
font-variant: inherit;
font-variant: initial;
font-variant: revert;
font-variant: revert-layer;
font-variant: unset;
Values
normal
-
Specifies a normal font face. Each longhand property has an initial value of
normal
. none
-
Sets the value of the
font-variant-ligatures
asnone
and the values of the other longhand properties asnormal
, their initial value.
,
,
,-
Specifies the keywords related to the
font-variant-ligatures
longhand property. The possible values arecommon-ligatures
,no-common-ligatures
,discretionary-ligatures
,no-discretionary-ligatures
,historical-ligatures
,no-historical-ligatures
,contextual
, andno-contextual
. stylistic()
,historical-forms
,styleset()
,character-variant()
,swash()
,ornaments()
,annotation()
-
Specifies the keywords and functions related to the
font-variant-ligatures
longhand property. small-caps
,all-small-caps
,petite-caps
,all-petite-caps
,unicase
,titling-caps
-
Specifies the keywords and functions related to the
font-variant-caps
longhand property. Thesmall-caps
value is the only non-normal
font variant valid within thefont
shorthand property.
,
,
,ordinal
,slashed-zero
-
Specifies the keywords related to the
font-variant-numeric
longhand property. The possible values arelining-nums
,oldstyle-nums
,proportional-nums
,tabular-nums
,diagonal-fractions
,stacked-fractions
,ordinal
, andslashed-zero
.
,
,ruby
-
Specifies the keywords related to the
font-variant-east-asian
longhand property. The possible values arejis78
,jis83
,jis90
,jis04
,simplified
,traditional
,full-width
,proportional-width
, andruby
. sub
,super
-
Specifies the keywords and functions related to the
font-variant-position
longhand property. text
,emoji
,unicode
-
Specifies the keywords and functions related to the
font-variant-emoji
longhand property.
Formal definition
Initial value | normal |
---|---|
Applies to | all elements and text. It also applies to ::first-letter and ::first-line . |
Inherited | yes |
Computed value | as specified |
Animation type | discrete |
Formal syntax
font-variant =
normal |
none |
[ [|| || || ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ stylistic( ) || historical-forms || styleset( # ) || character-variant( # ) || swash( ) || ornaments( ) || annotation( ) ] || [ || || || ordinal || slashed-zero ] || [ || || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ] =
common-ligatures |
no-common-ligatures=
discretionary-ligatures |
no-discretionary-ligatures=
historical-ligatures |
no-historical-ligatures=
contextual |
no-contextual=
=
lining-nums |
oldstyle-nums=
proportional-nums |
tabular-nums=
diagonal-fractions |
stacked-fractions=
jis78 |
jis83 |
jis90 |
jis04 |
simplified |
traditional=
full-width |
proportional-width
Examples
Setting the small-caps font variant
HTML
Firefox rocks!
Firefox rocks!
CSS
p.normal {
font-variant: normal;
}
p.small {
font-variant: small-caps;
}
Result
Specifications
Specification |
---|
CSS Fonts Module Level 4 # font-variant-prop |
Scalable Vector Graphics (SVG) 2 # FontVariantProperty |
Browser compatibility
See also
text-transform
text-combine-upright
text-orientation
- SVG
font-variant
attribute