Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1741 Is it possible to put a scrollbar to a select drop down list?

You are here: irt.org | FAQ | JavaScript | HTML | Q1741 [ previous next ]

Yes. Just create a multiple select list with a size of one:

<form>
<select multiple size="1">
<option>one
<option>two
<option>three
<option>four
</select>
</form>

©2018 Martin Webb