It's a quirk in HTML when you close a <form> in a table cell it adds that
ugly space after the input box.

To avoid this, start your form tag BEFORE your <table> tag, and close
your form tag AFTER your </table> tag.

Like so:

<HTML>
<BODY>
<FORM>  <!-- put it here instead :) -->
<TABLE WIDTH="50%" HEIGHT=20 bgcolor="#CCCCCC">
<TR><TD>
<INPUT type="text" value="Search">
</TD></TR>
</TABLE>
</FORM>  <!-- and here -->
</BODY>
</HTML>

Hope you have been enlightened!
-Tiffany the Insightful



> Sorry, but that didn't solve it. This is what I do. I wrote this code
> quickly under Notepad and sent it to the list:
>
> <HTML>
> <TABLE WIDTH="100%" bgcolor="#CCCCCC">
> <TD>
> <FORM><INPUT type="text" value="Search"></FORM></TD></TABLE>
> </HTML>
>
> When you're going to view this code in your browser, you'll see a blank
line
> under the textbox. So, the question is: Where am I wrong, what's wrong
with
> this code? Please help, I am sure the solution is quite simple, but I
> haven't found it, yet! Thanks.


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to