Property of Group
Syntax
Group.style.overflow = "hidden"|"scroll"|"auto";
Group.style.overflowX = "hidden"|"scroll"|"auto"; New in package 168
Group.style.overflowY = "hidden"|"scroll"|"auto"; New in package 168
Parameters
Parameter | Description |
---|---|
"hidden" | Content outside the element box is not shown (no scrollbars). |
"scroll" | Scroll bars are added, and content is clipped when necessary. |
"auto" | Content is clipped and scroll bars are added when necessary. |
Description
The 'overflow' property without axis suffix sets or returns what to do with content that renders outside the group for both vertical and horizontal axes.
An overflow property with axis suffix sets or returns value for the specified axis. New in package 168