cssunminifier icon indicating copy to clipboard operation
cssunminifier copied to clipboard

Whitespace between property name and colon (:) is not removed

Open gerritgriebel opened this issue 9 years ago • 1 comments

IMHO, this

.hide-for-print {
    display             : none;
}

should become

.hide-for-print {
    display: none;
}

gerritgriebel avatar Jan 04 '17 10:01 gerritgriebel

Hi,

We've also got what sounds like a similar issue.

However the code we input is

@media (min-width: 1024px) {.navigation .pink-underline::after {bottom: 4px}}

but we get out

@media (min-width: 1024px) {
    .navigation .pink-underline: :after {
    bottom: 4px;
}

You can see theres an extra space between : :after

Any advice would be appreciated!

Thanks

OwenMelbz avatar Sep 30 '17 11:09 OwenMelbz