Lesson 9 of 3030%

(Progress persistence is disabled until Phase 9)

Tailwind CSS
Beginner

Font Weight

Changing the thickness of text.

Control font weight using font-{weight}.

Weights

  • font-light (300)
  • font-normal (400)
  • font-medium (500)
  • font-semibold (600)
  • font-bold (700)
  • font-extrabold (800)
<p class="font-bold">Important bold text.</p>
<p class="font-light">Subtle light text.</p>
Try It Yourself

Lesson Progress

Take QuizBuild a Tailwind CSS Project