如何对 HTML 中 select 标签的选项应用不同的样式
我正在尝试在下拉选项上应用一些 CSS 类。 CSS 在 Firefox 中正确应用,但在 IE (7, 8) 中仅应用颜色。谁能告诉我如何在 IE 7 和 IE 8 的下拉选项上应用样式。
.regionOption {
font-weight: bold;
}
.countryOption {
margin-left: 10px;
padding-left:5px;
}
我根据条件在选项上使用这些 CSS 类。它们在 Firefox 中运行良好。
我想显示地区和国家之间的差异,还有其他方法吗?
谢谢 阿什瓦尼
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Internet Explorer 目前不支持选项元素的全部样式。
支持的样式的完整列表显示在以下 MSDN 文章中标题为“样式”的部分下:
http://msdn.microsoft.com/en-us/library/ms535877%28VS.85%29.aspx
Internet Explorer does not currently support the full range of styles on option elements.
The full list of supported styles appears on the following MSDN article under the section titled "Styles":
http://msdn.microsoft.com/en-us/library/ms535877%28VS.85%29.aspx