Remove space between <select> tag and options in MS Edge browsers

Viewed 121

I am not sure if this is new but I recently noticed that for MS Edge browsers there is a space between the <select> tag and its options.

enter image description here

I know there are really few options for style <select> elements.

Is there any alternative to remove this? Preferable without extra libraries.

Example (check this in MS Edge):

<body style="background: blue;">
  <select>
    <option>Option 1</option>
    <option>Option 1</option>
    <option>Option 1</option>
  </select>
</body>

0 Answers
Related