我正在开发一个移动网站并在 iPhone 和 android 手机上进行测试。我使用 CSS 更改了页面上选择框的外观。
这在 iPhone 浏览器中显示良好,但在 Android 中无法正确应用样式。原始的下拉箭头仍然存在(并且由于 height 属性而垂直拉伸)。
有没有办法告诉浏览器如何在 android 设备上设置这个元素的样式?还是不支持?
这是我的代码示例:
HTML:
<div class="filter-group">
<select class="bigInput" id="f_eventWho" name="f_eventWho" tabindex="1">
<option id="f_public" selected="selected">For Everyone</option>
<option id="f_private">By invitation</option>
<option id="f_both">All Gatherings</option>
</select>
</div>
CSS:
.bigInput
{width: 125px;
height: 50px;
background-size: 15px;
background: rgb(159, 209, 225) url(../img/small_down_arrow_20.png) no-repeat right;
border: none;
margin: 5px;
font-size: 14px;
}