Skip to main content Skip to docs navigation

Font style

Utilities for controlling font style including italic and normal styles.

On this page

Class Styles
.fst-italic font-style: italic;
.fst-normal font-style: normal;

Font style

Quickly change the font-style of text with these utilities. font-style utilities are abbreviated as .fst-*.

Italic text.

Text with normal font style

HTML
<p class="fst-italic">Italic text.</p>
<p class="fst-normal">Text with normal font style</p>

CSS

Sass utilities API

Font style utilities are declared in our utilities API in scss/_utilities.scss. Learn how to use the utilities API.

SCSS
"font-style": (
  property: font-style,
  class: fst,
  values: italic normal
),