textIndent property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String gettextIndent
Gets the value of "text-indent"
Implementation
String get textIndent => getPropertyValue('text-indent');
settextIndent (String value)
Sets the value of "text-indent"
Implementation
set textIndent(String value) {
setProperty('text-indent', value, '');
}