Home → References → CSS Properties →
CSS Property: overflow
Specifies what should happen to the overflow - the portions of content that do not fit inside a box.
HTML Dog is hosted by Titan Internet
Possible Values
inheritvisible(default) - overflow spills over the box.hidden- overflow can not be seen.scroll- the box scrolls to accommodate the overflow.auto- similar in practice toscroll, the box scrolls to accommodate the overflow.
Example
#content {
width: 500px;
overflow: hidden;
}

