Back to Lessons

CSS Typography Text Styling

April 5, 2026

Typography and Text Properties

Control font families, sizes, line height, text effects.

Font Properties

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }

Text Effects

  • text-align: center; text-align: justify
  • text-transform: uppercase
  • letter-spacing: 0.05em
  • text-shadow: 2px 2px 4px rgba(0,0,0,0.3)