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

description

String getbackgroundPosition

Gets the value of "background-position"

Implementation

String get backgroundPosition => getPropertyValue('background-position');

setbackgroundPosition (String value)

Sets the value of "background-position"

Implementation

set backgroundPosition(String value) {
  setProperty('background-position', value, '');
}