以下のサンプル HTML に示すように、html select 要素と対応するオプションがあります。リスト内のすべてのオプションに境界線を付けたいのですが、Firefoxでは機能しますが、クロムでは機能しません。どうすれば実現できるか教えてください
<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>