height property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getheight
Gets the value of "height"
Implementation
String get height => getPropertyValue('height');
setheight (String value)
Sets the value of "height"
Implementation
set height(String value) {
setProperty('height', value, '');
}