I'm using DropKick to style a select field. I need to seperate the text in the option, so that one word is floated right.
I tried this, but my span
is stripped away:
<select>
<option>opt1</option>
<option>opt2</option>
<option>opt3<div class="right">I need to be to the right</div></option>
</select>
What can I do to target certain part of an option using DropKick?