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

Text Decoration

Controls the text decoration of an element.

Class Property

td-none

text-decoration: none;

td-u

text-decoration: underline;

Using responsive modifiers

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

<div class="td-none md:td-u ..."></div>

Using hover modifiers

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

<div class="td-none h:td-u ..."></div>