Font & Text in Tailwind CSS
From the Tailwind CSS cheat sheet ยท Typography ยท verified Jul 2026
Font & Text
Control font size, weight, line height, and text styling.
html
<!-- Font size -->
<p class="text-sm">Small</p>
<p class="text-base">Base (1rem)</p>
<p class="text-xl">Extra large</p>
<p class="text-4xl font-bold">Heading</p>
<!-- Text color & decoration -->
<p class="text-gray-600">Gray text</p>
<a class="underline decoration-blue-500">Link</a>
<p class="line-through">Deleted</p>๐ก line-clamp-2 truncates text to 2 lines with an ellipsis โ no CSS hacks needed
โก decoration-2 + underline-offset-4 creates modern-looking styled underlines
๐ text-shadow is new in v4 โ supports color and opacity modifiers like text-shadow-lg/50
๐ข Use tracking-tight on large headings and tracking-wide on small uppercase labels
typographyfonttext