overflow

object overflow extends Overflow

The overflow CSS property specifies whether to clip content, render scroll bars or display overflow content of a block-level element.

The overflow CSS property specifies whether to clip content, render scroll bars or display overflow content of a block-level element.

MDN

class Overflow
class Style[String]
class Key
class Object
trait Matchable
class Any

Value members

Inherited fields

lazy val auto: StyleSetter

Depends on the user agent. Desktop browsers like Firefox provide scrollbars if content overflows.

Depends on the user agent. Desktop browsers like Firefox provide scrollbars if content overflows.

MDN

Inherited from
Overflow
lazy val hidden: StyleSetter

The content is clipped and no scrollbars are provided.

The content is clipped and no scrollbars are provided.

MDN

Inherited from
Overflow
override val name: String
Inherited from
Style
lazy val scroll: StyleSetter

The content is clipped and desktop browsers use scrollbars, whether or not any content is clipped. This avoids any problem with scrollbars appearing and disappearing in a dynamic environment. Printers may print overflowing content.

The content is clipped and desktop browsers use scrollbars, whether or not any content is clipped. This avoids any problem with scrollbars appearing and disappearing in a dynamic environment. Printers may print overflowing content.

MDN

Inherited from
Overflow
lazy val visible: StyleSetter

Default value. Content is not clipped, it may be rendered outside the content box.

Default value. Content is not clipped, it may be rendered outside the content box.

MDN

Inherited from
Overflow