Font Decoration
Text Decoration Classes
.no-decoration
Removes text decoration.
CSS equivalent: text-decoration: none;
Example usage:
.underline
Adds an underline to the text.
CSS equivalent: text-decoration: underline;
Example usage:
.overline
Adds an overline to the text.
CSS equivalent: text-decoration: overline;
Example usage:
.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