Overflow
The CSS overflow property controls what happens to content when an element’s content is too big to fit in its block formatting context — in both directions.this property can take following values:
[ visible | hidden | clip | scroll | auto ]
p {
overflow: scroll; /* content is scrolled */
}