CSS Generator

Overflow

Options
auto: If content fits inside the padding box, it looks the same as visible, but still establishes a new block formatting context. Desktop browsers provide scrollbars if content overflows.
Preview
This is just text to show you what happens when you use the overflow property on a box with text in it. The box is any container, such as the body, a div, a section, or anything else. If overflow is set to auto or scroll, you can scroll inside the box. If overflow is set to hidden, the text will be cut off. If overflow is set to visible, the text will be visible outside the box without the need to scroll.
Code