Remove all style properties

style.removeAllProperties(options?)

Remove all style properties from a Style.

Syntax

style.removeAllProperties(
options?: {
breakpoint?: BreakpointId,
pseudo?: PseudoStateKey,
variantId?: string
}
): Promise<void>

Parameters

  • options: StyleOptions - An object that filters which properties to remove by breakpoint, pseudo-state, and/or variant. (Optional)

    • breakpoint: BreakpointId - Identifies the responsive breakpoint to remove properties from.

      type BreakpointId = "xxl" | "xl" | "large" | "main" | "medium" | "small" | "tiny"
    • pseudo: PseudoStateKey - Specifies a CSS pseudo-class to remove properties from.

      type PseudoStateKey = "noPseudo" | "nth-child(odd)" | "nth-child(even)" |
      "first-child" | "last-child" | "hover" | "active" |
      "visited" | "focus" | "focus-visible" | "focus-within" |
      "placeholder" | "empty" | "before" | "after"
    • variantId: string - The ID of the variant to target. 'base' is not a valid value. (Optional)

Returns

Promise<null>

A promise that resolves to null

Example

// Retrieve the style by name
const retrievedStyle = await webflow.getStyleByName(styleName);
// Remove all properties from the base style
await retrievedStyle?.removeAllProperties()
// Remove all properties for a specific variant
await retrievedStyle?.removeAllProperties({ variantId: 'variant-123' })

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign