css – 为什么在OSX中的select选项上使用`-webkit-appearance:none`会使文本消失?

前端之家收集整理的这篇文章主要介绍了css – 为什么在OSX中的select选项上使用`-webkit-appearance:none`会使文本消失?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为了在OS X中的Chrome上获得我想要的样式,我必须使用-webkit-appearance:none;属性.

this questionthis answer.

问题是,现在当我选择一个答案时,它没有显示出来.该领域仍然是空白.

这是没有该属性的外观:

这是它与属性的外观:

对于它的价值,这就是我创建这个选择菜单的方式 – 使用Simple Form:

<%= 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;
}

解决方法

我有这个问题,结果是导致它的高度属性.
select {
    padding: 20px;
    height: 20px; /* suddenly invisible text! */
    -webkit-appearance: none;
}

看看这个小提琴
http://jsfiddle.net/bpYGv/2/

原文链接:https://www.f2er.com/css/214424.html

猜你在找的CSS相关文章