CSSCSS15 min read

CSS Overflow

Handle content that exceeds container size.

David Miller
November 24, 2025
6.5k170

Overflow handles extra content.

## Common values
- hidden
- scroll
- auto

## Example
```css
.box {
  width: 200px;
  height: 100px;
  overflow: auto;
}
```

## UI Preview
Scrollbar appears if content is too big.

## Real world example
Chat boxes and panels.
#CSS#Beginner