I just found out about multiple
attribute of a select
tag. I implemented it in my project but it doesn't look good and I have to hold ctrl to choose more than one, which is kind of annoying. I wanted to know if there is any way to style it to make it look better because the main goal is choosing one or more words out of five.
And the code:
<div class="form-group">
<label class="col-form-label">Select some options</label>
<select class="form-control" id="aluno" multiple>
<option selected="true" disabled>Click to select</option>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
<option>Option 5</option>
</select>
</div>