Skip to content

Typography Keywords

Typography utility keywords (text-decoration-style only; other typography keywords are in their own definitions)

Syntax

visual="[keyword]"

Values

ValueCSS OutputDescription
decoration-solidtext-decoration-style: solidSolid line
decoration-doubletext-decoration-style: doubleDouble line
decoration-dottedtext-decoration-style: dottedDotted line
decoration-dashedtext-decoration-style: dashedDashed line
decoration-wavytext-decoration-style: wavyWavy line

Examples

html
<span visual="underline decoration-dashed">Dashed underline</span>

Preview

Text Decoration Style

visual="decoration-dashed" - Set the style of text decoration lines

soliddasheddottedwavy
View Code
html
<div layout="flex col" space="g:small p:medium" visual="bg:neutral-100 dark:bg:neutral-900 rounded:medium">
  <span visual="underline decoration-solid">solid</span>
  <span visual="underline decoration-dashed">dashed</span>
  <span visual="underline decoration-dotted">dotted</span>
  <span visual="underline decoration-wavy">wavy</span>
</div>