Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created October 29, 2018 12:28
Show Gist options
  • Save mrzarkovic/a7dcfa98e1fc1f74c1b9e21dd9341ff3 to your computer and use it in GitHub Desktop.
Save mrzarkovic/a7dcfa98e1fc1f74c1b9e21dd9341ff3 to your computer and use it in GitHub Desktop.
CSS nesting
.parent {
background: yellow;
}
.parent .childOne {
color: red;
}
/* This is child two */
.parent .childTwo {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment