margin property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getmargin

Gets the value of "margin"

Implementation

String get margin => getPropertyValue('margin');

setmargin (String value)

Sets the value of "margin"

Implementation

set margin(String value) {
  setProperty('margin', value, '');
}