CSS

CSS controls the visual styling and layout of web pages.

Use CSS to define how HTML should look: color, typography, spacing, layout, responsiveness, and interaction states.

Mental Model

HTML gives structure. CSS gives presentation.

CSS works through selectors and rules:

.card {
  padding: 1rem;
  border-radius: 8px;
  background: white;
}

Core Topics

  • selectors
  • box model
  • typography
  • colors
  • spacing
  • flexbox
  • grid
  • responsive design
  • hover and focus states