I have a problem when I make a form inside a table's cell, and in this form I have only an image submit button. Why there's an extra space at the bottom of the table's cell? How can I get rid of it?
I want the height of the table's cell to be the same height of the image submit button.
e.g. Preview this code in the FrontPage and you'll got my point:
<table border="1">
<tr>
<td>
<form method="post" action="">
<input type="image" src="image.gif">
</form>
</td>
</tr>
</table>
I want the height of the table's cell to be the same height of the image submit button.
e.g. Preview this code in the FrontPage and you'll got my point:
<table border="1">
<tr>
<td>
<form method="post" action="">
<input type="image" src="image.gif">
</form>
</td>
</tr>
</table>