CSS/蓝图覆盖默认选择字段
我使用蓝图作为我的 CSS 框架。我对它自定义选择字段的方式不满意,并且想恢复为默认值。
这里是 Blueprint 生成的 CSS:
select {
background-color: #FFFFFF;
border-style: solid;
border-width: 1px;
}
你认为有办法实现这一点吗? (我的问题是恢复边框样式默认值。我不能使用任何一个,也不能继承。)
谢谢!
I am using blueprint as my CSS framework. I am not happy with the way it customizes select field, and want to go back to default.
Here the CSS generated by Blueprint:
select {
background-color: #FFFFFF;
border-style: solid;
border-width: 1px;
}
Do you think there is a way to achieve this? (My issue to get back border-style default.. I cannot use none, or inherit..)
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个浏览器以不同的方式呈现选择元素。此外,选择元素的呈现受操作系统影响。您可能只需删除上面的 CSS 即可。
Each browser renders the select element differently. Furthermore the rendering of the select element is effected by the operating system. You might have to simply delete the above CSS.