1

I have this select, and whenever I'm running it in IE/Edge, there is a thick black border surrounding the opened list of options.

Opened select in Edge:

thick border

In Chrome, this does not happen:

enter image description here

Is there a way to override that thick border in IE/Edge? I'd like to have it have a similar border to the one in Chrome.

<select>
 <option>Apple</option>
 <option>Ball</option>
 <option>Cat</option>
</select>
knee pain
  • 600
  • 3
  • 19
  • Possible duplicate of [How to remove border of drop down list : CSS](https://stackoverflow.com/questions/14639638/how-to-remove-border-of-drop-down-list-css) – Jayakrishnan Sep 05 '18 at 13:20

1 Answers1

3

There is no way to change styles of the generic dropdown in any browser.

But with Javascript, you can replace the default dropdown form elements and completely change them.

Or you can use a ready-made dropdown plugin like these.

More info

Reinventing a Drop Down with CSS and jQuery

Saeed
  • 2,169
  • 2
  • 13
  • 29