![]() |
The overflow property defines what happens to the content of an element if it is overflown (not enough space for it).
| Value | Description |
| visible | This is the default value. The content is not clipped. It renders outside the element |
| hidden | The content is clipped, but the browser does not display a scroll-bar to see the rest of the content. |
| scroll | The content is clipped, but the browser displays a scroll-bar to see the rest of the content. |
| auto | If the content is clipped, the browser should display a scroll-bar to see the rest of the content. |
Available since CSS 2.0.
Comments