I frequently find myself wanting to make a table of forms -- a bunch of rows, each row being a separate form with its own fields and submit button. For instance, here\'s an
You can use css to give table layout to other elements.
.table { display: table; } .table>* { display: table-row; } .table>*>* { display: table-cell; }
Then you use the following valid html.
snake