overflow

CSS Overflow

CSS Overflow

Introduction to CSS Overflow

The `overflow` property specifies how content that overflows an element's box is handled.

Common Overflow Values

Example


div {
    width: 200px;
    height: 100px;
    overflow: auto;
}
        

Browser Support

Supported by all modern browsers.