We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since I did not find any documentation, I had to ask here.
I have this CSS:
:root { --color1: E38082 --color11: 0, 0, 0 ; --color12: 202, 200, 196 ; --color2: 202, 196, 196 ; --color21: 190 , 187, 187 ; --color22: 202, 196, 196 ; --color3: 13, 13, 13 ; --color4: 0, 0, 0 ; --color5: 0, 0, 0 ; --color51: 34, 34, 34 ; }
As you can see it has some invalid lines (line 2) and some useless spaces.
Can I use your library to validate and normalize CSS?
The final result should be lie this:
:root { --color1: E38082; --color11: 0, 0, 0; --color12: 202, 200, 196; --color2: 202, 196, 196; --color21: 190, 187, 187; --color22: 202, 196, 196; --color3: 13, 13, 13; --color4: 0, 0, 0; --color5: 0, 0, 0; --color51: 34, 34, 34; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since I did not find any documentation, I had to ask here.
I have this CSS:
As you can see it has some invalid lines (line 2) and some useless spaces.
Can I use your library to validate and normalize CSS?
The final result should be lie this:
The text was updated successfully, but these errors were encountered: