ckstyle-node icon indicating copy to clipboard operation
ckstyle-node copied to clipboard

层叠规则的处理

Open yisibl opened this issue 11 years ago • 2 comments

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;
}

yisibl avatar Sep 17 '14 09:09 yisibl

这个正确的处理结果是output这个么?

wangjeaf avatar Sep 17 '14 10:09 wangjeaf

嗯 output 是期望的结果

yisibl avatar Sep 17 '14 10:09 yisibl