borderSpacing property - CssStyleDeclarationBase class - dart:html library (original) (raw)
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, '');
}