Menu
Styling Text & Links

CSS Text

Color, alignment, decoration, spacing.

1Text Properties

Control color, alignment, and transformation.

Example Code
p {
  color: #333;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

Finished reading?

Mark this topic as complete to track progress.