How can I add a label inside a select box using Bootstrap? Here is an example:
Before selecting an option
After selecting an option, the label should appear in a small size like this:
After selecting an option
:
<div class="form-group">
<label for="sector">Sector</label>
<div class="label form-label-group">
<select class="form-control" id="sector">
<option>Civilian</option>
<option>Officer</option>
<option>Retirement</option>
</select>
</div>
</div>