Overflow

class Overflow(name: String) extends Style[String]
class Style[String]
class Key
class Object
trait Matchable
class Any
object overflow

Value members

Concrete 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

lazy val hidden: StyleSetter

The content is clipped and no scrollbars are provided.

The content is clipped and no scrollbars are provided.

MDN

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

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