tbela99 / css

A CSS parser and minifier and sourcemap generator written in PHP
Other
14 stars 1 forks source link

vendor prefix declarations not rendered properly #96

Closed tbela99 closed 2 years ago

tbela99 commented 2 years ago
.site-grid>[class*=" container-"], .site-grid>[class^=container-] {
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    max-width: none;
    width: 100%;
}

is incorrectly rendered as

site-grid>[class*=" container-"],
.site-grid>[class^=container-] {
    -moz-column-gap: 1em;
    max-width: none;
    width: 100%;
}

instead of

.site-grid>[class*=" container-"],
.site-grid>[class^=container-] {
 -webkit-column-gap: 1em;
 -moz-column-gap: 1em;
 column-gap: 1em;
 max-width: none;
 width: 100%
}