Menu
Box Model & Layout

CSS Overflow

Handle content that is too big to fit.

1Overflow Properties

Visible (default), hidden, scroll, or auto.

Example Code
div {
  width: 100px;
  height: 100px;
  overflow: scroll; /* Adds scrollbars */
}

Finished reading?

Mark this topic as complete to track progress.