cwdoh/cssparser.js

Whitespace in selectors (With element combination) are removed

Closed this issue · 1 comments

Still the spacing issue is not fixed for element and class combination selectors:

Input:
div .header { bar:foo; }

The data object contains:
selector: "div.header"

when it should be:
selector: "div .header"

cwdoh commented

Done :)