Skip to content

Instantly share code, notes, and snippets.

@aervin
Created June 8, 2018 22:07
Show Gist options
  • Save aervin/418370a969cb63ae7bafa34a84ab295d to your computer and use it in GitHub Desktop.
Save aervin/418370a969cb63ae7bafa34a84ab295d to your computer and use it in GitHub Desktop.
alphabetize ur gd style rules
/* this */
p {
color: blue;
font-family: sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 24px;
padding-left: 8px;
}
/* not this */
p {
padding-left: 8px;
font-family: sans-serif;
line-height: 24px;
font-size: 16px;
color: blue;
font-weight: 400;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment