πŸ“ͺFont Decoration

Text Decoration Classes

.no-decoration

Removes text decoration.

CSS equivalent: text-decoration: none;

Example usage:

<span class="no-decoration">This text has no decoration.</span>

.underline

Adds an underline to the text.

CSS equivalent: text-decoration: underline;

Example usage:

<span class="underline">This text is underlined.</span>

.overline

Adds an overline to the text.

CSS equivalent: text-decoration: overline;

Example usage:

<span class="overline">This text has an overline.</span>

.line-through

Adds a line-through to the text.

CSS equivalent: text-decoration: line-through;

Example usage:


Text Decoration Style Classes

.decoration-solid

Sets the text decoration style to solid.

CSS equivalent: text-decoration-style: solid;

Example usage:


.decoration-double

Sets the text decoration style to double.

CSS equivalent: text-decoration-style: double;

Example usage:


.decoration-dotted

Sets the text decoration style to dotted.

CSS equivalent: text-decoration-style: dotted;

Example usage:


.decoration-dashed

Sets the text decoration style to dashed.

CSS equivalent: text-decoration-style: dashed;

Example usage:


.decoration-wavy

Sets the text decoration style to wavy.

CSS equivalent: text-decoration-style: wavy;

Example usage:

Last updated