Multiple Select Height

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?

Screen Shot 2022-08-29 at 1.23.27 PM

It is the size attribute:

 <select id="select1" class="form-select" multiple="true" size="5">
1 Like

Perfect! Thanks Ken! :beers:

1 Like

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.