Remove all style properties

style.removeAllProperties(options?)

Remove all style properties from a Style.

Syntax

1style.removeAllProperties(
2 options?: {
3 breakpoint?: BreakpointId,
4 pseudo?: PseudoStateKey,
5 variantId?: string
6 }
7): 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.

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

      1type PseudoStateKey = "noPseudo" | "nth-child(odd)" | "nth-child(even)" |
      2 "first-child" | "last-child" | "hover" | "active" | "pressed" |
      3 "visited" | "focus" | "focus-visible" | "focus-within" |
      4 "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

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

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign