I'm currently working on a bootstrap 4.3.1 dropdown select box, but I'm having trouble centering the text ('nothing selected') in the select box.
$(function() {
$('.selectpicker').selectpicker();
});
<link href="https://www.sailwbob.com/bootstrap/bootstrap.min.css" rel="stylesheet"/>
<link href="https://www.sailwbob.com/bootstrap/bootstrap-select.min.css" rel="stylesheet"/>
<select id='test' multiple data-style="bg-white border border-dark pill px-4 py-3 " data-selected-text-format="count" class="selectpicker justify-content-center w-50">
<option>United Kingdom</option>
<option>United States</option>
<option>France</option>
<option>Germany</option>
<option>Italy</option>
</select>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://www.sailwbob.com/bootstrap/bootstrap.bundle.min.js"></script>
<script src="https://www.sailwbob.com/bootstrap/bootstrap-select.min.js" </script>