TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:7375] HTML FORM question....



"Schlough, Mark (NM IT)" wrote:
> I'm wondering if a person can control the width of a drop-down list like

Here is a kludgey way to do it:

<FORM>
<SELECT>
<OPTION o1>1</OPTION>
<OPTION o2>2</OPTION>
<OPTION o3>3</OPTION>
<OPTION o4>4</OPTION>
<OPTION o5>5</OPTION>
<OPTION o6>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
</OPTION>
</SELECT>
</FORM>

Troy