Currently, I am facing an issue with a dropdown menu where users have to select a country from the list. The problem is that the code works correctly in Firefox (the second option, which has an empty value, does not fulfill the required step), but Chrome overlooks this and accepts the empty value as valid.
Below is the code snippet:
<select class="form-control" name="Country" required>
<option selected value="">Choose Your Country</option>
<option value=""></option>
<option value="country1">Country1</option>
<option value="country2">Country2</option>
etc
Can anyone provide insights into what might be causing this issue? Thank you!