Fonts & Text in CSS

From the CSS cheat sheet ยท Typography ยท verified Jul 2026

Fonts & Text

Font properties, text alignment, spacing, and web font loading

css
body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

h1 { font-size: 2.5rem; font-weight: 700; }
.muted { color: #6b7280; }
.center { text-align: center; }
๐Ÿ’ก Use rem for font sizes (relative to root) โ€” predictable and accessible when users change browser defaults
โšก clamp(min, preferred, max) makes fluid typography easy โ€” no media queries needed
๐Ÿ“Œ font-display: swap prevents invisible text while web fonts load (FOUT over FOIT)
๐ŸŸข text-wrap: balance evens out heading line lengths โ€” great for narrow containers
typographyfontstext

More CSS tasks

Back to the full CSS cheat sheet