- Published on
Tailwind CSS text size classes
- Authors
- Name
- hwahyeon
Confusion keeps arising, so the Tailwind CSS text size classes are being organized here.
Class Name | Size (rem) | Size (px) |
---|---|---|
text-xs | 0.75rem | 12px |
text-sm | 0.875rem | 14px |
text-base | 1rem | 16px |
text-lg | 1.125rem | 18px |
text-xl | 1.25rem | 20px |
text-2xl | 1.5rem | 24px |
text-3xl | 1.875rem | 30px |
text-4xl | 2.25rem | 36px |
text-5xl | 3rem | 48px |
text-6xl | 3.75rem | 60px |
text-7xl | 4.5rem | 72px |
text-8xl | 6rem | 96px |
text-9xl | 8rem | 128px |
Custom Sizes:
Tailwind CSS also supports custom text sizes with the format text-[size]
.
For example:
text-[10px]
— 10pxtext-[1.25rem]
— 1.25rem (20px)