Re: Forms and alignment

[email protected]
Sun, 29 May 1994 08:35:14 +0200


> Can I align all the text boxes so they all start on the same
> character position? Example:

> Client: XXXXXXXXX
> Entry Date: XXXXXXXXX
> Notes: XXXXXXXXX

> I have read where in HTML blanks are insignificant. I also tried the
> <pre> (preformatted text> markup, however my boxes are placed on the
> following line.

Yet, using <PRE> is the solution. Try formatting your input like
this:

<FORM ...>
<PRE>
Client: <INPUT NAME=client SIZE=40>
Entry Date: <INPUT NAME=entry_date SIZE=40>
Notes: <INPUT NAME=notes SIZE=40>
</PRE>
</FORM>

At least it works for me with Mosaic 2.4.

Note that if the <INPUT ...> tags get uncomfortably long you can break
them into multiple lines, e.g.

<INPUT
NAME=client
SIZE=40
VALUE="foobar"
>

--Guido van Rossum, CWI, Amsterdam <[email protected]>
URL: <http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>