Results 1 to 8 of 8

Thread: How can I eliminate the extra space after a </form> tag?

  1. #1

    Thread Starter
    Banned
    Join Date
    Apr 2016
    Location
    Delhi
    Posts
    4

    How can I eliminate the extra space after a </form> tag?

    Hello guys i want to know How can I eliminate the extra space after a </form> tag?

  2. #2
    Smooth Moperator techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,532

    Re: How can I eliminate the extra space after a </form> tag?

    Ummm.... by hitting the Delete key???

    what extra space? your question is highly vague and contains no information what so ever.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Location
    South Louisiana
    Posts
    11,712

    Re: How can I eliminate the extra space after a </form> tag?

    If you are referring to buffer surrounding the form then what may be occurring is the parent element of the <form> may have margin. You will need to explicitly set the margin of the parent element equal to 0.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | Code Tags | Sword of Fury - Jameram

  4. #4

    Re: How can I eliminate the extra space after a </form> tag?

    Hiiii......

    Use Delete key from your keyword to remove extra space
    .
    .
    .
    If not working then specify about extra space.......

  5. #5

    Re: How can I eliminate the extra space after a </form> tag?

    Hello,

    HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:
    Code:
    <form style="margin-bottom:0;" action=...>
    You can also use a CSS style sheet to affect all the forms on a page:
    Code:
    form { margin-bottom: 0 ;
    Last edited by dday9; Jun 16th, 2020 at 08:18 AM.

  6. #6

    Re: How can I eliminate the extra space after a </form> tag?

    Check if there is &nbsp; code in your HTML or code like <br>.

  7. #7
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Location
    South Louisiana
    Posts
    11,712

    Re: How can I eliminate the extra space after a </form> tag?

    Why won't this thread just die?
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | Code Tags | Sword of Fury - Jameram

  8. #8

    Re: How can I eliminate the extra space after a </form> tag?

    hello...
    using set the margin value is 0 you can remove unnecessary space.
    < advertising removed by moderator >

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width