I want to add icon inside select input
tag its working in Firefox
but not working in Google Chrome
anybody can solve it? My code is below what is have tried.
select{ font-size:18px;}
.bride{ background:url('https://www.shareicon.net/data/32x32/2016/04/06/745724_people_512x512.png') top right no-repeat; float:right;}
.groom{ background:url('http://icons.iconarchive.com/icons/designbolts/free-male-avatars/32/Male-Avatar-Cool-Sunglasses-icon.png') top right no-repeat; float:right;}
<select>
<option value="Female" class="bride">Bride</option>
<option value="Male" class="groom">Groom</option>
</select>