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

description

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, '');
}