Nearby lessons
46 of 61📝 Tailwind CSS - Text (Align, Color, Decoration, Transform & More)
📖 Overview
Tailwind provides a rich set of text utilities covering alignment, color, decoration, transformation, overflow, wrapping, indentation, and more.
↔️ Text Align
Available utilities:
text-left– Left aligntext-center– Center aligntext-right– Right aligntext-justify– Justify texttext-start/text-end– Logical alignment
🎨 Text Color
Available utilities (text-{color}-{shade}):
- Any Tailwind color:
text-blue-500,text-red-600, etc. text-inherit,text-current,text-transparenttext-black,text-white- With opacity:
text-blue-500/75
✏️ Text Decoration
Decoration type:
underline,overline,line-through,no-underline
Decoration color: decoration-{color}-{shade}
Decoration style: decoration-solid, decoration-dashed, decoration-dotted, decoration-double, decoration-wavy
Decoration thickness: decoration-auto, decoration-from-font, decoration-0, decoration-1, decoration-2, decoration-4, decoration-8
Underline offset: underline-offset-auto, underline-offset-1, underline-offset-2, underline-offset-4, underline-offset-8
🔤 Text Transform, Overflow & Wrap
Text Transform:
uppercase,lowercase,capitalize,normal-case
Text Overflow:
truncate– Truncate with ellipsistext-ellipsis– Ellipsis overflowtext-clip– Clip overflow
Text Wrap:
text-wrap,text-nowrap,text-balance,text-pretty
Text Indent: indent-{size} (e.g., indent-4, indent-8)
📐 Vertical Align, Whitespace, Word Break & Hyphens
Vertical Align: align-baseline, align-top, align-middle, align-bottom, align-text-top, align-text-bottom, align-sub, align-super
Whitespace: whitespace-normal, whitespace-nowrap, whitespace-pre, whitespace-pre-line, whitespace-pre-wrap, whitespace-break-spaces
Word Break: break-normal, break-words, break-all, break-keep
Hyphens: hyphens-none, hyphens-manual, hyphens-auto