Hi @Anjali Agarwal
You can try to change the submit button or its parent container's margin-bottom
property or padding-bottom
property.
Like this: change the margin-bottom
to 60px:
<input style="float: right; margin-bottom:60px" type="submit" value="Submit" class="btn btn-primary" />
Or change submit button's parent element's padding-bottom
property.
<div class="form-group" style="margin-top:20px; padding-bottom:80px;">
<input style="float: right; margin-bottom:20px" type="submit" value="Submit" class="btn btn-primary" />
</div>
Besides, you can use F12 developer Elements tools, it is easier to find the html elements and change the CSS style, and then view the CSS update result, after that you can according to it to find the elements and change the CSS style in your application.
For example: find the submit button and change its margin-bottom
property, the submit button will move away from the bottom. Or you can change the main element's (submit button's parent container) padding-bottom
property.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion