marginLeft property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getmarginLeft
Gets the value of "margin-left"
Implementation
String get marginLeft => getPropertyValue('margin-left');
setmarginLeft (String value)
Sets the value of "margin-left"
Implementation
set marginLeft(String value) {
setProperty('margin-left', value, '');
}