Remove style properties

style.removeProperties(prop, options?)

Remove multiple style properties from a Style object.

Syntax

1style.remove(props: Array<StyleProperty>,options?: BreakpointAndPseudo): Promise<void>

Parameters

  • prop: StyleProperty [] - An array of style properties. See the style properties list for an index of CSS properties and their accepted value types.
  • options : BreakpointAndPseudo {breakpoint: BreakpointId, pseudo: PseudoStateKey?}- An optional parameter to filter properties based on a breakpoint and/or pseudo-class, also known as a pseudo-state.

    • BreakpointId: "xxl" | "xl" | "large" | "main" | "medium" | "small" | "tiny" - An optional identifier of the breakpoint size, also known as media query, in the Designer.
    • PseudoStateKey: "noPseudo" | "nth-child(odd)" | "nth-child(even)" | "first-child" | "last-child" | "hover" | "active" | "pressed" | "visited" | "focus" | "focus-visible" | "focus-within" | "placeholder" | "empty" | "before" | "after" - An optional identifier for the pseudo-classes of an element that can be targeted and styled using CSS.

Returns

Promise<null>

A Promise that resolves to null

Example

1// Get Selected Element
2const selectedElement = await webflow.getSelectedElement()
3
4if (selectedElement?.styles) {
5
6 // Get Element Styles
7 const styles = await selectedElement.getStyles()
8 const primaryStyle = styles[0]
9 const properties : StyleProperty[] = ['background-color', 'accent-color',"font-family"]
10 await primaryStyle.removeProperties(properties)
11
12}

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign