如何在 Firefox 中设置选择框及其边框的颜色?

发布于 2024-09-06 15:34:10 字数 199 浏览 3 评论 0原文

我想将颜色设置为选择框及其内容的边框。 我可以在 IE 中看到选择框边框的颜色。但我在 Firefox 中看不到边框颜色。

我也想将颜色设置为选择框项目的边框。 有什么办法可以做到这一点吗?

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

select {
 border-color:blue;
}

I want to set the color to the border of the select box and its contents.
I am able to see the color to the border of select box in IE. But I cannot see the border color in Firefox.

I want to set the color to the border to the select box items also.
Is there any way to do this ?

To set the border color to the IE I am using the following code base.

select {
 border-color:blue;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

も让我眼熟你 2024-09-13 15:34:10

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

例如:

border:1px solid blue;

但是,问题是它会以旧的非本机块状样式呈现选择框。与本机渲染相比(尤其是在 Mac OS X 上),它相当难看。

另外 - 对于颜色:

color:green;

和背景颜色:

background-color:gray;

In firefox, you need to specify the full border:

for instance:

border:1px solid blue;

Problem, however, is that it'll then render the select box in the old non-native blocky style. It's rather ugly compared to the native rendering (especially on Mac OS X).

Also -- for color:

color:green;

And background color:

background-color:gray;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文