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

description

String getmarginBottom

override

Gets the value of "margin-bottom"

Implementation

String get marginBottom => this._marginBottom;

setmarginBottom (String? value)

override

Sets the value of "margin-bottom"

Implementation

set marginBottom(String? value) {
  _marginBottom = value == null ? '' : value;
}