OVERFLOW-Y
The overflow-y property specifies the handling of overflow in the vertical direction.
SYNTAX
CSS
overflow-y: value;
JS
object.style.overflowY = "value";
VALUES
<'overflow-y'> = visible | hidden | clip | scroll | auto
visible
There is no special handling of overflow, the box's content is rendered outside the box if positioned there.
hidden
The box's content is clipped to its padding box and the UA must not provide any scrolling user interface to view the content outside the clipping region, nor allow scrolling by direct intervention of the user.
clip
Like hidden, but also forbids scrolling.
scroll
Indicates that the content is clipped to the padding box, but can be scrolled into view.
auto
Automatically specified by the user agent.
INITIAL
visible