I\'ve run into a curious problem; I\'ve got a form inside a The If I were you, I'd just put the Or, you could replace the you can only put a form inside a td basically, so you could put those 2 rows inside a new table that you create inside a td You cannot interrupt the ..or.., however the form refuses to wrap any tags inside it. I\'ve made a quick JSFiddle here to
<form>
tag can only be placed inside a <td>
element or outside the <table>
in this case.<form>
around the whole table since you said there won't be any other forms within it.<table>
completely with <div>
s instead that use display: table;
or display: table-cell;
.
like ...<table><tr><td><form><table><tr>...</tr><tr>...</tr></table></form></td></tr><tr>...</tr><tr>...</tr></table>
<table>
structure with any tags besides <thead>
, <tfoot>
, <tbody>
, <tr>
, <th>
, or <td>
. You form tags need to be encapsulated between two <td>
or your entire <table>
needs to be placed within the <form>
tag.<table>
<tr>
<td>
<form>
...form data...
</form>
</td>
</tr>
</table>
<form>
<table>
...
</table>
</form>