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

Overflow Wrap

Controls word wrapping.

Class Property

ow-bw

overflow-wrap: break-word;

ow-n

overflow-wrap: normal;

Using responsive modifiers

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

<div class="ow-n md:ow-bw ..."></div>

Using hover modifiers

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

<div class="ow-n h:ow-bw ..."></div>