removeShorthandGridArea static method
Implementation
static void removeShorthandGridArea(CSSStyleDeclaration style, [bool? isImportant]) {
removeShorthandGridRow(style, isImportant);
removeShorthandGridColumn(style, isImportant);
if (style.contains(GRID_AREA_INTERNAL)) {
style.removeProperty(GRID_AREA_INTERNAL, isImportant);
}
}