YUI-CSS-compressor-PHP-port icon indicating copy to clipboard operation
YUI-CSS-compressor-PHP-port copied to clipboard

Suggestion: remove one space before :not

Open rinart73 opened this issue 2 years ago • 0 comments

Since Java version has the same output, it's not a bug. Just a suggestion for improvement. Input:

section  a   :not( .one  , .two  , [ data-x = " ab  c " ] ) {
  color  : red ;
}

Ouput:

section a :not(.one,.two,[data-x=" ab  c "]){color:red}

Space before :not can be safely removed.

rinart73 avatar Jul 12 '22 05:07 rinart73