YUI-CSS-compressor-PHP-port
YUI-CSS-compressor-PHP-port copied to clipboard
Suggestion: remove one space before :not
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.