为了在 OS X 中的 Chrome 上获得我想要的样式,我必须使用该-webkit-appearance: none;
属性。
问题是,现在当我选择一个答案时,它不会出现。该字段保持空白。
这是没有该属性的外观:
这是它与属性的外观:
对于它的价值,这就是我创建这个选择菜单的方式 - 使用简单形式:
<%= f.input_field :country_id, collection: Piggybak::Country.send(type), class: "required" %>
这是它生成的 HTML:
<select class="select required required valid" id="piggybak_order_billing_address_attributes_country_id" name="piggybak_order[billing_address_attributes][country_id]"><option value=""></option>
<option value="231" selected="selected">United States</option></select>
我该如何解决?
编辑 1
这是CSS
:
form.simple_form select {
padding: 20px;
-webkit-appearance: none;
}