You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
476 B
14 lines
476 B
|
|
/**
|
|
* visible - Default.The overflow is not clipped.The content renders outside the element's box
|
|
* hidden - The overflow is clipped, and the rest of the content will be invisible
|
|
* scroll - The overflow is clipped, and a scrollbar is added to see the rest of the content
|
|
* auto - Similar to scroll, but it adds scrollbars only when necessary
|
|
*/
|
|
const Overflows = Object.freeze({
|
|
visible: "visible",
|
|
hidden: "hidden",
|
|
scroll: "scroll",
|
|
auto: "auto"
|
|
});
|
|
|
|
|