tableLayout property - CssStyleDeclaration class - dart:html library (original) (raw)
String gettableLayout
override
Gets the value of "table-layout"
Implementation
String get tableLayout => this._tableLayout;
settableLayout (String? value)
override
Sets the value of "table-layout"
Implementation
set tableLayout(String? value) {
_tableLayout = value == null ? '' : value;
}