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 の例
できます