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

description

String getcounterReset

Gets the value of "counter-reset"

Implementation

String get counterReset => getPropertyValue('counter-reset');

setcounterReset (String value)

Sets the value of "counter-reset"

Implementation

set counterReset(String value) {
  setProperty('counter-reset', value, '');
}