Use absolute position to pin elements in a specific place inside the boundaries of a relative parent element.
To do that, first, we need to relatively position the form element. Because, If we absolute-position the submit button first, the button may jump to an unexpected location. So, to keep the button inside the form element, let’s set the form element’s position to relative:
And now, let’s position the button:
You may notice the submit button might overlap other form elements now that it’s absolute positioned. If this happens, you can fix it by adding bottom padding on the form element to compensate for the submit button’s height.
Something went wrong while submitting the form. Please contact support@webflow.com