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