Hi
I should really know better by now but don't.
I have been cheating with <form>s and putting them around <td>s to stop the form tag from make what looks like a paragraph break, well it isn't valid html. its basically a form on a page with a search box, is there some other way to stop the form tag making a space?
Thanksthe form tag has no spacing to it whatsoever.
technically forms shouldn't be within tables as there not tabular data (although some would argue)
<td>
<form action="" method="post">
<fieldset>
<label for="input1">input 1</label>
<input type="text" name="input1" id="input1"/>
</fieldset>
</form>
<td><form style="margin:0;padding:0">
and then the margins and padding around the form will disappear.Cheers Guys
Making the form padding 0 seem to do the trick
I should really know better by now but don't.
I have been cheating with <form>s and putting them around <td>s to stop the form tag from make what looks like a paragraph break, well it isn't valid html. its basically a form on a page with a search box, is there some other way to stop the form tag making a space?
Thanksthe form tag has no spacing to it whatsoever.
technically forms shouldn't be within tables as there not tabular data (although some would argue)
<td>
<form action="" method="post">
<fieldset>
<label for="input1">input 1</label>
<input type="text" name="input1" id="input1"/>
</fieldset>
</form>
<td><form style="margin:0;padding:0">
and then the margins and padding around the form will disappear.Cheers Guys
Making the form padding 0 seem to do the trick