I'd like to show icons from the Fontawesome font in an HTML select. I'm using this CSS for the select:
select {
font-family: 'FontAwesome', Arial;
}
EDIT: Here is the HTML for the select:
<select>
<option value="2"> Deny</option>
<option value="1"> Accept</option>
<option value="3"> Reject</option>
<option value="4"> Accounting</option>
</select>
In Chrome it works fine, but Firefox doesn't render the icons when you open the select, like you can see here:
Is Firefox missing that feature or is there something I can do with CSS to solve it?
Thanks,