I need assistance with my multiple drop-down select tag issue.
.CustomStyle {
overflow-x: scroll;
width: 16%;
}
<select multiple size="5" class="CustomStyle">
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
<option>Option 5</option>
<option>Option 6</option>
</select>
When I select an option, the text to the right disappears. I have multiple drop-downs on my website and I do not want this text disappearance to occur. Is there a way to prevent this using HTML or CSS rather than using custom JavaScript code? If so, how can I achieve this?