Skip to content
Get ready for the next version of Yumma CSS, which is going to be amazing!

Font Style

Controls the font style of an element.

Class Property

fs-i

font-style: italic;

fs-n

font-style: normal;

Using responsive modifiers

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 hover modifiers

Using :hover modifiers 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>