Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#header { width:100%; height:200px; } #theme.theme1 .handle { background:blue; } #header.noback { background:none; }
为什么最后一个声明在这里没有覆盖?
http://jsfiddle.net/5VnAs
这是由于CSS 的特殊性。如果您将最后一条规则更改为
#header.noback.handle{ background:none; }
jsFiddle 示例
有用