Menu
Box Model & Layout

CSS Max-widths

Constrain width for responsive designs.

1Using Max-Width

max-width prevents an element from getting larger than the specified value, but lets it shrink on small screens.

Example Code
div {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

Finished reading?

Mark this topic as complete to track progress.