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.
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>
