I'm trying to make a dropdown to be multi-select.
For example, I should be able to select Option 1, Option 2, Option 3, and Option 4 at the same time.
Just to make things more understandable. I'm attaching the desired result below:
<select>
<option>All</option>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
</select>