Frank Schönmann: Validator

Beitrag lesen

hi!

"nesting" scheint ein Begriff zu sein der "ineinanderschachteln"
meint.

...was du auch in jedem Englisch-Wörterbuch gefunden hättest.

<table>
<tr>
<td><form></td>
<td>inhalt</td>
<td>inhalt</td>
<td>inhalt</td>
<td>inhalt</td>
...
</form>
</tr>
</table>

jetzt bemängelt der CSE HTML Validator (Checker) aber , daß ich
erst das <form> schließen soll bevor ich mit </td> weitermache!

Wo er Recht hat, hat er Recht. Warum schreibst du das <form>-Tag
nicht einfach außenrum um die ganze Tabelle?

<form>
<table>
  <tr>
    <td></td>
    <td></td>
  </tr>
</table>
</form>

bye, Frank!