Web >> Development >> HTML >> Tricks >> How to have make a form with textbox input that appears narrow in a table row

Trick is to put the <form> tag between <tr> and <td> and to put the </form> closing tag in between </td> and </tr> <tr> <form action=action.cgi method=get> <td> <input ...> </td> </form> </tr>