Skip to content

Font Style

Controls the font style of an element.

Class Properties

fs-i

font-style: italic;

fs-n

font-style: normal;

Using breakpoints

Using responsive breakpoints like sm:fs-*, md:fs-*, lg:fs-*, and xxl:fs-* allows targeting specific utilities in different viewports.

<div class="fs-n md:fs-i ..."></div>

Using variants

Using :hover variants such as h:fs-* allows you to override elements and change their values when hovering over them.

<div class="fs-n h:fs-i ..."></div>