Skip to content
Support Yumma CSS by starring us on GitHub!

Text Decoration

Controls the text decoration of an element

Class Properties

td-none

text-decoration: none;

td-u

text-decoration: underline;

None

This example sets the text decoration to none. The text will be displayed without any decoration.

The quick brown fox jumps over the lazy dog.

<div class="bg-l-indigo-6 p-4 rad-1">
<p class="bg-white fs-sm p-4 rad-1 ta-c tc-lead td-none">The quick brown fox jumps over the lazy dog.</p>
</div>

Underline

This example sets the text decoration to underline. The text will be displayed with an underline.

The quick brown fox jumps over the lazy dog.

<div class="bg-l-indigo-6 p-4 rad-1">
<p class="bg-white fs-sm p-4 rad-1 ta-c tc-lead td-u">The quick brown fox jumps over the lazy dog.</p>
</div>

Utilizing utilities conditionally

Override existing utilities based on the user's screen size or other factors, such as hover states. Learn more about modifiers in our documentation.

Responsive breakpoints

You can combine 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>

Utilizing utilities conditionally

Override existing utilities based on the user's screen size or other factors, such as hover states. Learn more about modifiers in our documentation.

Hover states

Alternatively, you can apply :hover by using h:td-* utility to override elements and change their values when hovering over them.

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