1

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.

1 Answers1

0

Are you able to post a working example? This sounds like a styling issue, but I don't see any CSS/styling at all

Jeremy Stone
  • 350
  • 4
  • 12
  • 29