0

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

谢谢!

在此处输入图像描述

网址在这里

4

1 回答 1

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>

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

于 2013-09-30T09:17:22.503 回答