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
CSS Section -> Selectors are placed on separate lines:
/* Good */ h1, h2, h3 { text-transform: uppercase; } /* Bad */ h1, h2, h3 { text-transform: uppercase; }
Notice the Good and Bad examples are the same.
CSS Section -> Properties have their own unique line:
/* Good */ .gallery { background: #000; color: #fff; } /* Bad */ .gallery { background: #000; color: #fff; }
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
Might be caused by automatic formatting.
Sorry, something went wrong.
You are welcome!
No branches or pull requests
CSS Section -> Selectors are placed on separate lines:
Notice the Good and Bad examples are the same.
CSS Section -> Properties have their own unique line:
Notice the Good and Bad examples are the same.
The text was updated successfully, but these errors were encountered: