下拉文字颜色

时间:2013-09-30 08:49:07

标签: android css browser drop-down-menu

有人(请)能够解释如何解决我在Android浏览器上遇到的问题吗?浏览器上的下拉文本颜色为黑色(请参阅附带的屏幕截图,左右两侧),但在我的Mac上的Firefox和Safari中它很好!有什么想法吗?

谢谢!

enter image description here

网址为here

1 个答案:

答案 0 :(得分:0)

Android中黑色东西的原因可能是因为有一个自定义样式表将select标记更改为黑色。

尝试更改

select {
margin-bottom: 0px;
margin-left: 20px;
border: 1px solid #444;
padding: 5px;
background: #222;
color: #FFF !important; //here is the change
width: 150px;

因为还有一个样式表

select {
-webkit-appearance: menulist;
box-sizing: border-box;
align-items: center;
border: 1px solid;
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
white-space: pre;
-webkit-rtl-ordering: logical;
color: black; // this might be causing the problem in some custom style sheet
background-color: white;
cursor: default;
}

现在我不知道这是哪个样式表。找出来:)更多关于锁定右键单击:)

编辑----

有人将此添加到您的HTML

<style>
label.searchform-label {color: black; }
</style>

我不知道它来自哪里,但意识到这是一个问题:)