Shlomi Fish wrote: >I'd like to create an XHTML document with several forms each containing an >edit box and a submit button. Now I want all the edit boxes to be aligned >at one column and all the buttons to be aligned at the other. > >Now, XHTML does not allow me to put forms like this: > ><table> ><form ...> ><tr> ... </tr> ></form> ><form ...> ><tr> ... </tr> ></form> >. >. >. ></table> > >Or like this: > ><table> ><tr> ><form> ><td>...</td><td>..</td> ></form> ></tr> >. >. >. > >(I can only put them inside a <td>). > >So my question is how can I still align them properly? > >Regards, > > Shlomi Fish > > >---------------------------------------------------------------------- >Shlomi Fish [EMAIL PROTECTED] >Home Page: http://t2.technion.ac.il/~shlomif/ >Home E-mail: [EMAIL PROTECTED] > >"Let's suppose you have a table with 2^n cups..." >"Wait a second - is n a natural number?" > > >================================================================= >To unsubscribe, send mail to [EMAIL PROTECTED] with >the word "unsubscribe" in the message body, e.g., run the command >echo unsubscribe | mail [EMAIL PROTECTED] > > > > > Not much expert in XHTML, but can you do:
<form> <table> <tr><td>Entry</td><td>Button</td></tr> .. </table> </form> ? -- <a href="http://www.rootshell.be/~eg">Eliran G</a> ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]
