CssVisibility enum

The visibility keywords this package understands.

The CSS-wide keywords (inherit, initial, revert, unset) parse to null and leave the element alone.

Inheritance
Available extensions

Values

visible → const CssVisibility

visibility: visible -- the initial value. Nothing is wrapped for it.

hidden → const CssVisibility

visibility: hidden -- not painted, but still occupies its layout space.

collapse → const CssVisibility

visibility: collapse -- not painted.

On a table row or column CSS collapses the track, so the space goes with it. On every other element CSS says it behaves as hidden, so the space stays. This package follows both rules; see CssEffectsHtmlExtension.tableTrackElements.

Properties

hashCode → int
The hash code for this object.
no setterinherited
index → int
A numeric identifier for the enumerated value.
no setterinherited
name → String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Constants

values → const List<CssVisibility>
A constant List of the values in this enum, in order of their declaration.