如何覆盖chrome中的嵌入样式?
Chrome 附加了一个样式表,这给我带来了很多问题。例如,这个选择器
html>body, html>body * {background-color:#ffffff !important}
是我无法在自己的样式中覆盖的东西之一。有人有解决方案吗?
Chrome appends an stylesheet and it make a lot of problems for me. for example this selector
html>body, html>body * {background-color:#ffffff !important}
is one oe the things I can't override in my own styles. Anyone has a solution for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管所有浏览器都有一个默认的元素样式表,但它们都没有将背景颜色设置为 !important,这不允许您更改它。您显示的内容必须是从其他地方附加的,而不是 Chrome,但是,如果没有链接或完整的标记,我们告诉您的任何内容都只是一个疯狂的猜测。
Though all browsers have a default stylesheet for elements, none of them set the background color as !important which wouldn't allow you to change it. What you show must be getting attached from elsewhere, not Chrome, but, without a link or the complete markup, anything we tell you would just be a wild guess.