listStylePosition property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getlistStylePosition
Gets the value of "list-style-position"
Implementation
String get listStylePosition => getPropertyValue('list-style-position');
setlistStylePosition (String value)
Sets the value of "list-style-position"
Implementation
set listStylePosition(String value) {
setProperty('list-style-position', value, '');
}