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 align
  • text-center – Center align
  • text-right – Right align
  • text-justify – Justify text
  • text-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-transparent
  • text-black, text-white
  • With opacity: text-blue-500/75
🌀

tailwind Designer

Live Component Playground

html Source
Loading...
Built with Tailwind CSS • Instant Reflection

✏️ 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

🌀

tailwind Designer

Live Component Playground

html Source
Loading...
Built with Tailwind CSS • Instant Reflection

🔤 Text Transform, Overflow & Wrap

Text Transform:

  • uppercase, lowercase, capitalize, normal-case

Text Overflow:

  • truncate – Truncate with ellipsis
  • text-ellipsis – Ellipsis overflow
  • text-clip – Clip overflow

Text Wrap:

  • text-wrap, text-nowrap, text-balance, text-pretty

Text Indent: indent-{size} (e.g., indent-4, indent-8)

🌀

tailwind Designer

Live Component Playground

html Source
Loading...
Built with Tailwind CSS • Instant Reflection

📐 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

🌀

tailwind Designer

Live Component Playground

html Source
Loading...
Built with Tailwind CSS • Instant Reflection

🧠 Test Your Knowledge

5 Questions

Progress: 0 / 5
Keep Going!Tailwind CSS - Vertical Align