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

description

String getmaxHeight

Gets the value of "max-height"

Implementation

String get maxHeight => getPropertyValue('max-height');

setmaxHeight (String value)

Sets the value of "max-height"

Implementation

set maxHeight(String value) {
  setProperty('max-height', value, '');
}