ckstyle-node
ckstyle-node copied to clipboard
层叠规则的处理
input
.foo {
background-color: #999;
background: url(../img/demo.png) 0 0 no-repeat;
}
output
后面覆盖了前面的 background-color ,变成了transparent
.foo {
background: url(../img/demo.png) 0 0 no-repeat;
}
这个正确的处理结果是output这个么?
嗯 output 是期望的结果