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