css / csso

CSS minifier with structural optimizations
https://css.github.io/csso/csso.html
MIT License
3.74k stars 189 forks source link

Wrong border compressed result when with shorthand-border #462

Open shinken008 opened 1 year ago

shinken008 commented 1 year ago
.no-border {
    border: 0 solid transparent;
    border-width: 1px;
}

.red-border {
    border: 0 solid red;
    border-width: 1px;
}

will be transformed:

.no-border,.red-border {
    border: 0 solid transparent;
    border-width: 1px
}

.red-border {
    border: 0 solid red
}

.red-border's property border-width is gone.

expect






but