Hallo!
Wie kann ich ein Formular in einer Tabelle Zellenübergreifend machen, dass es auch vom W3C-Validator angenommen wird?
Ich hab es schon mal vor und nach dem <tr>-Tag, vor und nach den <td>-Tags probiert!
So sollte man es laut W3C z. B. nicht machen:
<table>
<form method="post" action="pfad">
<tr>
<td><input type="text" name="feld" value=""></td>
<td><input type="submit" name="abschicken" value="Absenden"></td>
</tr>
</form>
</table>
Wie soll ich denn aber sonst machen?