I have tried to create a table using normal html.
<table>
<tr>
<td> Hello </td>
</tr>
</table>
But, currently, i have a task to insert a form element without affecting the table structure. so it looks like this
<table>
<tr>
<form><td>hello</td></form>
</tr>
</table>
How should the form' css look like?