Overflow is a CSS property which governs what happens if content overflows its containing box. Do not use this tag for stack buffer overflow bugs and vulnerabilities; use [buffer-overflow] and/or [stack-smash] instead.
A CSS property which governs what happens if content overflows its containing box. Possible values are
visible
: Content is not clipped and the overflow is shown outside of the element.hidden
: Content is clipped and the overflow is not shown.scroll
: Content is clipped but a scroll bar is shown regardless of whether the content overflows or not.auto
: Same as scroll except the scroll bar is only shown if the content actually overflows.inherit
: Inherits from the parent element property
Do not use this tag for questions about a stack overflow, buffer overflow or stack smashing error or vulnerability. See the appropriate tag(s) instead: stack-overflow, buffer-overflow, stack-smash.