Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. CSS
  3. Reference
  4. At-rules
  5. @font-face
  6. font-style

font-style

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⁩.

Thefont-styleCSS descriptor allows authors to specify font styles for the fonts specified in the@font-face at-rule.

For a particular font family, authors can download various font faces that correspond to the different styles of the same font family and then use thefont-style descriptor to explicitly specify the font face's style. The values for this CSS descriptor are the same as that of the correspondingfont-style property.

Syntax

css
font-style: normal;font-style: italic;font-style: oblique;font-style: oblique 30deg;font-style: oblique 30deg 50deg;

Values

normal

Selects the normal version of the font-family.

italic

Specifies that font-face is an italicized version of the normal font.

oblique

Specifies that the font-face is an artificially sloped version of the normal font.

oblique with angle

Selects a font classified asoblique, and additionally specifies an angle for the slant of the text.

oblique with angle range

Selects a font classified asoblique, and additionally specifies a range of allowable angle for the slant of the text. Note that a range is only supported when thefont-style isoblique; forfont-style: normal oritalic, no second value is allowed.

Formal definition

Relatedat-rule@font-face
Initial valuenormal
Computed valueas specified

Formal syntax

font-style =
auto|
normal|
italic|
left|
right|
oblique[<angle [-90deg,90deg]>{1,2}]?

Examples

Specifying an italic font style

As an example, consider the garamond font family, in its normal form, we get the following result:

css
@font-face {  font-family: "garamond";  src: url("garamond.ttf");}

unstyled Garamond

The italicized version of this text uses the same glyphs present in the unstyled version, but they are artificially sloped by a few degrees.

artificially sloped garamond

On the other hand, if a true italicized version of the font family exists, we can include it in thesrc descriptor and specify the font style as italic, so that it is clear that the font is italicized. True italics use different glyphs and are a bit different from their upright counterparts, having some unique features and generally have a rounded and calligraphic quality. These fonts are specially created by font designers and arenot artificially sloped.

css
@font-face {  font-family: "garamond";  src: url("garamond-italic.ttf");  font-style: italic;}

italic garamond

Specifications

Specification
CSS Fonts Module Level 4
# font-prop-desc

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp