More Than Letters

1. text-transform

Allows changing case without editing HTML.

  • uppercase: ALL CAPITAL.
  • lowercase: all small letters.
  • capitalize: Each Word With Capital.

2. font-variant

Allows using special styles, for example small-caps — when lowercase letters look like reduced capitals.

.label {
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Always add spacing for caps! */
}
Tip

Using text-transform: uppercase makes text about 10% harder to read. Use it only for short headings or captions.