Skip to content

Instantly share code, notes, and snippets.

@bdbch
Last active April 13, 2017 10:58
Show Gist options
  • Save bdbch/ff154b5d2c059bf20938940124f7c837 to your computer and use it in GitHub Desktop.
Save bdbch/ff154b5d2c059bf20938940124f7c837 to your computer and use it in GitHub Desktop.
Maintainable CSS - Demo 3
/* ----- Maintainable Approach ------- */
.user {
}
.user-avatar {
}
.user-name {
}
.user-link {
}
/* ----- Non-Maintainable Approach ------- */
.user {
}
.user .avatar {
}
.user .name {
}
.user .name .link {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment