Hi everyone :wave:
I hope that this is a simple question... well.. this is my HTML code:
Well, my problem is that the table comes up with an extra space, something like this:HTML Code:<html>
<body>
<table border=1>
<tr>
<td>hi
<form><input type=hidden value='hello' height=0>
</form>
</td>
</tr>
</table>
</body>
</html>
+---+
|hi |
| * |
+---+
And I would like for my table to look like this:
+---+
|hi |
+---+
I suspect the <input type=hidden> to be causing this but I dont know how to get rid of this problem. Anyone have any idea of how to fix this?
