I'm having trouble aligning a select
element in Bootstrap without centering the text inside it. Can anyone provide a solution for this issue? I've attempted to center the containing div and then set the text-align property to left for the select
element.
<div class="form-group" style="text-align:center;">
<label for"year">Year</label><br />
<select style="text-align:left;" class="selectpicker" multiple title="Select one or more years">
<option>2020</option>
<option>2021</option>
<option>2022</option>
<option>2023</option>
<option>2024</option>
<option>2025</option>
</select>
</div>