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