如何在 Firefox 中设置选择框及其边框的颜色?
我想将颜色设置为选择框及其内容的边框。 我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Firefox 中,您需要指定完整边框:
例如:
但是,问题是它会以旧的非本机块状样式呈现选择框。与本机渲染相比(尤其是在 Mac OS X 上),它相当难看。
另外 - 对于颜色:
和背景颜色:
In firefox, you need to specify the full border:
for instance:
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:
And background color: