CSS Overflow
When the content of an element might be larger than the dimensions of the box itself then CSS Overflow conditions occur.
Properties:
visible (default), hidden, scroll, and auto.
Ex.
div {
width: 250px;
height: 150px;
overflow: scroll;
}