gridTemplateAreas property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getgridTemplateAreas
Gets the value of "grid-template-areas"
Implementation
String get gridTemplateAreas => getPropertyValue('grid-template-areas');
setgridTemplateAreas (String value)
Sets the value of "grid-template-areas"
Implementation
set gridTemplateAreas(String value) {
setProperty('grid-template-areas', value, '');
}