I have a multiple select input that I would just like to show all the options instead of having a scroll bar for one extra option. I’d rather just get rid of the scroll bar and show all options. I only have five options.
Is this possible?
I have a multiple select input that I would just like to show all the options instead of having a scroll bar for one extra option. I’d rather just get rid of the scroll bar and show all options. I only have five options.
Is this possible?
It is the size attribute:
<select id="select1" class="form-select" multiple="true" size="5">
Perfect! Thanks Ken!
If you had 15, for example, you can also use css to tighten the line height, as well as make the pull down taller… So that all would fit without scrolling.