Re: Tidy becomes less forgiving

* Allan Clark wrote:
>In past, I've made each row of a table into a form
>(<tr><form...>...</form></tr>) but this is illegal?

Yes.

>What is the alternative,

Either

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

or

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

If this causes presentation effects your former approach doesn't,
use CSS to change the presentation to your needs.
-- 
Björn Höhrmann { mailto:bjoern@hoehrmann.de } http://www.bjoernsworld.de
am Badedeich 7 } Telefon: +49(0)4667/981028 { http://bjoern.hoehrmann.de
25899 Dagebüll { PGP Pub. KeyID: 0xA4357E78 } http://www.learn.to/quote/

Received on Saturday, 15 September 2001 19:42:41 UTC