Step Container
Adding step for single step, steps for multistep or quiz functionality.
Setup
Attribute: sf-step = stepName
Where: any div
element that you want as a step (is required for single-step forms too).
Description: Defines the form's steps and assigns each step a unique name. Allows for navigation between steps.
HTML Example
<div sf="myForm">
<form>
<!-- Step 1 -->
<div sf-step="step1">
<!-- Step 1 content goes here -->
</div>
<!-- ## OPTIONAL ## -->
<!-- Step 2 -->
<div sf-step="step2">
<!-- Step 2 content goes here -->
</div>
</form>
</div>
Webflow Example
Last updated
Was this helpful?