CSS Tutorial

The language for styling web pages.

CSS Overflow

CSS Overflow

The overflow property controls what happens when content is too large to fit in its container.

Overflow Values:

  • visible - Default. Content overflows outside the box
  • hidden - Overflow is clipped (invisible)
  • scroll - Always shows scrollbars
  • auto - Adds scrollbars only when needed

You can also use overflow-x and overflow-y separately.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics