Skip to content

Instantly share code, notes, and snippets.

@rob-bar
Created September 24, 2012 13:44
Show Gist options
  • Save rob-bar/3776028 to your computer and use it in GitHub Desktop.
Save rob-bar/3776028 to your computer and use it in GitHub Desktop.
general 1
/* -- BAD -- */
#identifier {
key: value;
}
#identifier{
key:value;
}
#identifier
{
key:value;
}
/* -- GOOD -- */
#identifier {
key: value;
}
#identifier { key: value; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment