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

description

String getbackgroundAttachment

Gets the value of "background-attachment"

Implementation

String get backgroundAttachment => getPropertyValue('background-attachment');

setbackgroundAttachment (String value)

Sets the value of "background-attachment"

Implementation

set backgroundAttachment(String value) {
  setProperty('background-attachment', value, '');
}