Overflow All Property in CSS3
CSS Syntax
overflow : overflow: visible|hidden|scroll|auto|initial|inherit;
Visible: The overflow is not clipped/trimmed within the div width and height. It renders outside the element's box. This is the default (it's a by default property)
Hidden: it works opposite of visible property. that means The overflow is clipped, and the rest of the content will be invisible
Scroll: The overflow is clipped, but a scroll bar is added to see the rest of the content
Auto: Auto works as like Scroll.