如何在firefox中将颜色设置为选择框及其边框?

时间:2010-06-25 05:01:57

标签: html css internet-explorer firefox drop-down-menu

我想将颜色设置为选择框及其内容的边框。 我能够在IE中看到选择框边框的颜色。但我无法在Firefox中看到边框颜色。

我想将颜色设置为选择框项目的边框。 有没有办法做到这一点?

要设置IE的边框颜色,我使用以下代码库。

select {
 border-color:blue;
}

1 个答案:

答案 0 :(得分:1)

在firefox中,您需要指定完整的边框:

例如:

border:1px solid blue;
然而,问题是,它会以旧的非本机块状样式呈现选择框。与原生渲染相比,它相当丑陋(特别是在Mac OS X上)。

另外 - 对于颜色:

color:green;

背景颜色:

background-color:gray;