Bruce A. Julseth wrote:
Quote:
"Jonathan N. Little" <lws4art@central.netwrote in message
news:d8313$485f0965$40cba7a4$7500@NAXS.COM...
Quote:
>Bruce A. Julseth wrote:
Quote:
>>"Bruce A. Julseth" <julebj_nospam@bellsouth.netwrote in message
>>news:e8a7k.9889$PZ6.8336@bignews5.bellsouth.net...
>>>I'm "Failing" a trying to create a multicolum text input page. I have
>>>found many examples of two column pages where the first column is the
>>>field label and the second column is input text box. But, I can't find
>>>something like:
>>>>
>>> -label- -Text input- -label- -text input-
>>>>
>>>Additional rows might have up to 4 or 5 label/text combinations.
>>>>
>>>Is this the place that I give up trying to format with CSS and use
>>>tables?
>>>>
>>>BTW: I am a "newbie" with respect to CSS.
>>>>
>>>Thanks for the help..
>>>>
>>>>
>>>>
>>Can someone help me with this problem? Is the wrong newsgroup to ask for
>>help on this problem?
>>>
>>Thanks...
|
>CSS
>>
>fieldset { border: 0; float: left; }
>>
>HTML
>>
>>
>...
><fieldset>
><label for="foo">FOO:</label>
><input name="foo" id="foo" type="text" size="20">
></fieldset>
>>
><fieldset>
><label for="bar">BAR:</label>
><input name="bar" id="bar" type="text" size="20">
></fieldset>
>...
|
|
Quote:
>
This works for a single line but now how do I force the next group of input
fields to start in the left edge.
>
Thanks..
|
Need to research "clear", try tutorials at
www.htmldog.com
CSS
fieldset.nextrow { clear: left; }
HTML
<fieldset>
<label for="foo">FOO:</label>
<input name="foo" id="foo" type="text" size="20">
</fieldset>
<fieldset>
<label for="bar">BAR:</label>
<input name="bar" id="bar" type="text" size="20">
</fieldset>
<fieldset class="nextrow">
<label for="baz">BAZ:</label>
<input name="baz" id="baz" type="text" size="20">
</fieldset>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com