In my form, I have the following code:
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label class="control-label">
States
<img id="clear-selection" src="~/images/delete.png" title="Clear Selection" />
</label>
<select class="form-control"></select>
</div>
</div>
</div>
The label States is styled with an icon that I want to align to the right.
Currently it looks like this:
https://i.sstatic.net/eFy8J.png
I want it to look like this:
https://i.sstatic.net/cCOpM.png
Is there a way to achieve this using Bootstrap? I'm unsure about which styles are appropriate to use within a <label>
tag in Bootstrap.