CSS Overflow
The overflow property specifies what should happen if content overflows an element's box.
CSS Overflow
The overflow property controls what happens to content that is too big to fit into an area.
The overflow property has the following values:
visible- Default. The overflow is not clipped. The content renders outside the element's boxhidden- The overflow is clipped, and the rest of the content will be invisiblescroll- The overflow is clipped, and a scrollbar is added to see the rest of the contentauto- Similar to scroll, but it adds scrollbars only when necessary
Example 1: overflow: visible
By default, the overflow is visible, meaning that it is not clipped and renders outside the element's box:
Example 2: overflow: hidden
With the hidden value, the overflow is clipped, and the rest of the content will be invisible:
Example 3: overflow: scroll
Setting the value to scroll, the overflow is clipped and a scrollbar is added to scroll inside the box. Note that this will add a scrollbar both horizontally and vertically (even if you do not need it):
Example 4: overflow: auto
The auto value is similar to scroll, but it adds scrollbars only when necessary:
Example 5: overflow-x and overflow-y
The overflow-x and overflow-y properties specifies whether to change the overflow of content just horizontally or vertically (or both):