My </FORM> take is taking up space. How do I prevent that?
<DIV>
<FORM name="myform" action="action.asp" method="GET">
<INPUT name="q" id="q" type="text" maxlength="100" size="25">
<INPUT type="submit" value="Search">
</FORM>
</DIV>
This div is nested inside other divs. The </FORM> tag wraps to the next line after the button and creates a bunch of extra space that's breaking my layout.
If I put the DIVs inside the form entirely, then the </FORM> tag adds space somewhere else that I don't want. I can't find a place where it won't take up vertical space.
Any ideas?
<DIV>
<FORM name="myform" action="action.asp" method="GET">
<INPUT name="q" id="q" type="text" maxlength="100" size="25">
<INPUT type="submit" value="Search">
</FORM>
</DIV>
This div is nested inside other divs. The </FORM> tag wraps to the next line after the button and creates a bunch of extra space that's breaking my layout.
If I put the DIVs inside the form entirely, then the </FORM> tag adds space somewhere else that I don't want. I can't find a place where it won't take up vertical space.
Any ideas?