CSS overflow
The CSS overflow property specifies whether to clip content, render scrollbars, or overflow content when it exceeds the box's dimensions.
There are four possible values for the overflow property:
visible: Default value. Content is not clipped and may be rendered outside the box.hidden: Content is clipped and no scrollbars are provided.scroll: Content is clipped and scrollbars are provided to scroll through the content.auto: Content is clipped and scrollbars are provided only when necessary.
Let's see some examples that demonstrate how the overflow property works: