Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

</form> tag making space

Status
Not open for further replies.

zooraw

Programmer
Jun 27, 2003
18
US
Whenever I use a </form> tag, it seems to put in white space on the page. If I take it out, the white space disappears. I'd move the tag further down the page, but I have a separate <form> starting almost immediately after I close this one.

Is there any way to keep this white space from showing up?

Thanks!
 
Place your form tags inside of a table cell.

There's always a better way. The fun is trying to find it!
 
use css to set the top and bottom margins to 0px

MrBelfry
 
By default, forms cause page breaks. To stop this behavior, try this...

<style>
form {diplay: inline;}
</style>

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook (No, I'm not Rick)

fart.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top