I m working on a application for mail sending and need to use select tag of HTML with showing multiple options (But select only one at a time).
I tried multiple='multiple' but it is showing only one option and arrow disappears form select box.
<select multiple="multiple">
<option>Volvo</option>
<option>Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
You may need to include a “size” in addition to the “multiple” attribute, in order to show more than one option at a time. Try something like this:
As an alternative, since you want only one option selectable, you could consider using a list of radio buttons. For example,