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

description

String gettextJustify

Gets the value of "text-justify"

Implementation

String get textJustify => getPropertyValue('text-justify');

settextJustify (String value)

Sets the value of "text-justify"

Implementation

set textJustify(String value) {
  setProperty('text-justify', value, '');
}