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

description

String getborderSpacing

Gets the value of "border-spacing"

Implementation

String get borderSpacing => getPropertyValue('border-spacing');

setborderSpacing (String value)

Sets the value of "border-spacing"

Implementation

set borderSpacing(String value) {
  setProperty('border-spacing', value, '');
}