My select / dropdown elememt gets a black border when it is active. This happens only in IE and Edge.
Here's my code:-
<select >
<option value="Organization Size">Organization Size</option>
<option value="< 100"> 100</option>
<option value="100 - 500"> 100 - 500</option>
<option value="501 - 1000"> 501 - 1000</option>
<option value="> 1000"> 1000</option>
</select>
I am unable to find any solutions for this.
NOTE: I have to use the select element only I cannot replace it with any other kind of dropdown.
Thank You.