Skip to content

Instantly share code, notes, and snippets.

@badsyntax
Created June 4, 2013 09:33
Show Gist options
  • Save badsyntax/5704772 to your computer and use it in GitHub Desktop.
Save badsyntax/5704772 to your computer and use it in GitHub Desktop.
Don't blindly rely on ST2 sorting your CSS rules correctly.
The order of rules matters.
For example:
border: 1px solid #1b1b1b;
border-bottom: none;
If you sort those lines with ST2, you'll get:
border-bottom: none;
border: 1px solid #1b1b1b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment