removeShorthandPlaceContent static method
Implementation
static void removeShorthandPlaceContent(CSSStyleDeclaration style, [bool? isImportant]) {
if (style.contains(ALIGN_CONTENT)) style.removeProperty(ALIGN_CONTENT, isImportant);
if (style.contains(JUSTIFY_CONTENT)) style.removeProperty(JUSTIFY_CONTENT, isImportant);
}