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
<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.
"font-style": (
property: font-style,
class: fst,
values: italic normal
),