bottom property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getbottom

override

Gets the value of "bottom"

Implementation

String get bottom => this._bottom;

setbottom (String? value)

override

Sets the value of "bottom"

Implementation

set bottom(String? value) {
  _bottom = value == null ? '' : value;
}