For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Resources
Get started
ReferenceGuidesExamplesChangelog
ReferenceGuidesExamplesChangelog
  • Designer API
    • Introduction
    • Getting Started
    • Webflow CLI
    • Error Handling
    • App Modes
  • Elements
    • Creating & Retrieving Elements
    • Element Properties & Methods
    • Element Types & Methods
  • Styles
    • Managing Style Properties
      • Get style properties
      • Set style properties
      • Get style property
      • Set style property
      • Remove a style property
      • Remove style properties
      • Remove all style properties
    • Managing Variable Modes
  • Components
  • Variables & Collections
    • Variable Collections
    • Variables
    • Variable Modes
  • Assets
  • Pages & Folders
  • Utilities
    • User Events & Notifications
    • App Intents & Connections
  • Additional Resources
    • API Playground
    • FAQs
LogoLogo
Resources
Get started
On this page
  • style.setProperty(prop, value, options?)
  • Syntax
  • Parameters
  • Returns
  • Example
  • Designer Ability
StylesManaging Style Properties

Set style property

Was this page helpful?
Previous

Remove a style property

Next
Built with

style.setProperty(prop, value, options?)

Manage the CSS of a Style by setting a specific style property at the given breakpoint and pseudo-state.

Syntax

1style.setProperty(
2 prop: {{STYLE_PROPERTY}},
3 value: string | VariableReference,
4 options?: {
5 breakpoint?: {{BREAKPOINT_ID}},
6 pseudo?: {{PSEUDO_STATE_KEY}},
7 variantId?: {{VARIANT_ID}}
8 }
9): Promise<void>

Parameters

  • prop: StyleProperty - The property to set. See the Style Properties reference for a list of supported properties.

  • value: String | VariableReference - The value to set. You can set the value to a string or a variable reference.

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

    • breakpoint: BreakpointId - Identifies the responsive breakpoint to set the style property for.

      1type BreakpointId = "xxl" | "xl" | "large" | "main" | "medium" | "small" | "tiny"
    • pseudo: PseudoStateKey - Specifies a CSS pseudo-class to set the style property for.

      1type PseudoStateKey = "noPseudo" | "nth-child(odd)" | "nth-child(even)" |
      2 "first-child" | "last-child" | "hover" | "active" |
      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// Set a property for a specific breakpoint and pseudo-state
5const options: StyleOptions = { breakpoint: "xl", pseudo: "hover" }
6await retrievedStyle?.setProperty('background-color', 'blue', options)
7
8// Set a property for a specific variant
9await retrievedStyle?.setProperty('color', 'red', { variantId: 'variant-123' })
10
11// Set a property combining variant, breakpoint, and pseudo-state
12await retrievedStyle?.setProperty('font-size', '24px', {
13 variantId: 'variant-123',
14 breakpoint: 'medium',
15 pseudo: 'hover',
16})

Try this example

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign