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

description

String getboxSizing

Gets the value of "box-sizing"

Implementation

String get boxSizing => getPropertyValue('box-sizing');

setboxSizing (String value)

Sets the value of "box-sizing"

Implementation

set boxSizing(String value) {
  setProperty('box-sizing', value, '');
}