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

Text Decoration Style

Controls the style of text decoration.

Class Property

tds-d

text-decoration-style: dashed;

tds-h

text-decoration-style: hidden;

tds-none

text-decoration-style: none;

tds-s

text-decoration-style: solid;

Using responsive modifiers

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

<div class="tds-none md:tds-s ..."></div>

Using hover modifiers

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

<div class="tds-none h:tds-s ..."></div>