csso icon indicating copy to clipboard operation
csso copied to clipboard

A bug with restructuring and shorthands

Open stoyan opened this issue 1 year ago • 0 comments

.a {
    background: none;
    background-size: 1;
    b: c;
}

.b {
    background: some;
    background-size: 1;
    b: c;
}

becomes

.a,.b {
    background-size: 1;
    b: c
}

.a {
    background: 0 0
}

.b {
    background: some
}

The problem is background-size is wiped out by the shorthand background that comes after it

stoyan avatar Feb 26 '24 23:02 stoyan