backgroundSize property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getbackgroundSize
Gets the value of "background-size"
Implementation
String get backgroundSize => getPropertyValue('background-size');
setbackgroundSize (String value)
Sets the value of "background-size"
Implementation
set backgroundSize(String value) {
setProperty('background-size', value, '');
}