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

description

String getfontSize

Gets the value of "font-size"

Implementation

String get fontSize => getPropertyValue('font-size');

setfontSize (String value)

Sets the value of "font-size"

Implementation

set fontSize(String value) {
  setProperty('font-size', value, '');
}