Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

HTML%20Interview%20Questions%20and%20Answers

Question: How can I eliminate the extra space after a </form> tag?
Answer: HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:
<form style="margin-bottom:0;" action=...>

You can also use a CSS style sheet to affect all the forms on a page:
form { margin-bottom: 0 ; }
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook