I am encountering an issue with styling HTML select options in Chrome. Despite successfully applying borders to each option in Firefox, I cannot get it to work in Chrome. Can anyone advise on how this can be achieved?
<select id="sortingOptions" class="sortingOptions" onchange="window.location='/buyer/OutPDir.jsp?psort=' + this.options[this.selectedIndex].value;">
<option value="0">Best Match</option>
<option value="1" selected="selected">Price: Low to High</option>
<option value="12">Price: High to Low</option>
<option value="10">Product Rating</option>
<option value="13">Date Added</option>
<option value="3">Number of Sellers</option>
<option value="14">Best Selling</option>