The overflow property controls what happens when content is too large to fit in its container.
visible - Default. Content overflows outside the boxhidden - Overflow is clipped (invisible)scroll - Always shows scrollbarsauto - Adds scrollbars only when neededYou can also use overflow-x and overflow-y separately.
Edit the code below and click Run to see the result live.