-
Notifications
You must be signed in to change notification settings - Fork 244
Closed
Description
Before:
.a {
background: none
}
.b {
background: none center
}
.c {
background: url("test.png") transparent none repeat scroll
}After:
.a{background:#0000}.b{background:50% 50%}.c{background:url("test.png") transparent none repeat scroll}For .a we even have deoptimization (none vs #0000).
Possible optimised output (from csso):
.a{background:0 0}.b{background:center}.c{background:url(test.png)}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels