overflow - CSS 3
The overflow property specifies what happens if content overflows an element's box.This property specifies whether to clip content or to add scrollbars when an
element's content is too big to fit in a specified area.Note: The overflow property only works for block elements with a specified height.
Syntax
overflow: visible|hidden|scroll|auto|initial|inherit;
Example
div
{
width: 150px;
height: 150px;
overflow: scroll;
}
Output / Return Value
Limitations
Alternatives / See Also
Reference