Overflow property in CSS #css #overflow #visible #hidden #auto #scroll
`overflow: visible`: Default value, where content is not clipped and overflows outside the element's box.
`overflow: hidden`: Clips the content that overflows the element's box, hiding it from view.
`overflow: scroll`: Always shows scrollbars, regardless of whether the content overflows or not.
`overflow: auto`: Displays scrollbars only if the content overflows the element's box.
`overflow-x` / `overflow-y`: Controls the overflow behavior specifically for the horizontal (x-axis) or vertical (y-axis) direction (e.g., `overflow-x: scroll;`).