font-variant
{{CSSRef}}
The font-variant
CSS shorthand property allows you to set all the font variants for a font.
You can also set the <font-variant-css2>
values of font-variant
defined in CSS Level 2.1, (that is, normal
or small-caps
), by using the font
shorthand.
{{EmbedInteractiveExample("pages/css/font-variant.html")}}
Constituent properties
This property is a shorthand for the following CSS properties:
font-variant-alternates
font-variant-caps
font-variant-east-asian
font-variant-emoji
font-variant-ligatures
font-variant-numeric
font-variant-position
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
.
- : Specifies a normal font face. Each longhand property has an initial value of
-
none
- : Sets the value of the
font-variant-ligatures
asnone
and the values of the other longhand properties asnormal
, their initial value.
- : Sets the value of the
-
<common-lig-values>
,<discretionary-lig-values>
,<historical-lig-values>
,<contextual-alt-values>
- : 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
.
- : Specifies the keywords related to the
-
stylistic()
,historical-forms
,styleset()
,character-variant()
,swash()
,ornaments()
,annotation()
- : Specifies the keywords and functions related to the
font-variant-ligatures
longhand property.
- : Specifies the keywords and functions related to the
-
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 the{{cssxref("font")}}
shorthand property.
- : Specifies the keywords and functions related to the
-
<numeric-figure-values>
,<numeric-spacing-values>
,<numeric-fraction-values>
,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
.
- : Specifies the keywords related to the
-
<east-asian-variant-values>
,<east-asian-width-values>
,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
.
- : Specifies the keywords related to the
-
sub
,super
- : Specifies the keywords and functions related to the
font-variant-position
longhand property.
- : Specifies the keywords and functions related to the
-
text
,emoji
,unicode
- : Specifies the keywords and functions related to the
font-variant-emoji
longhand property.
- : Specifies the keywords and functions related to the
Formal definition
{{cssinfo}}
Formal syntax
{{csssyntax}}
Examples
Setting the small-caps font variant
HTML
<p class="normal">Firefox rocks!</p>
<p class="small">Firefox rocks!</p>
CSS
p.normal {
font-variant: normal;
}
p.small {
font-variant: small-caps;
}
Result
{{ EmbedLiveSample('Setting the small-caps font variant') }}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
{{cssxref("text-transform")}}
{{cssxref("text-combine-upright")}}
{{cssxref("text-orientation")}}
- SVG
{{SVGAttr("font-variant")}}
attribute