I'm trying to display a select tag on top of a leaflet map (using bootstrap).
I've tried amending the z-index in css but the select tag is still not visible.
What am I missing?
My HTML below:
<div id="mapid" class="container-fluid">
<form>
<div class="form-group form-row align-items-center">
<select class="form-control" id="country-dropdown" name="country">
<option value="-" id="select-country">Pick a Country...</option>
</select>
</div>
</form>
</div>