Basically Overflow is an CSS element which will be used to hid the extra stretched content in a given web page.

It's syntax:

p {
overflow: hidden;
}

In place of p we can have any html element like H1, h2...h6, div, or any class user defined. Here we need to remember the properties of overflow like auto, visible, scroll (to scroll the content), clip and hidden.

Share your interesting css style using overflow here.