7.8 Nesting code

To target a nested element …

7.8.1 … with CSS

div {
  background-color: black;
}

div p {
  color: white;
}

7.8.2 … with Sass

div {
  background-color: black;
  p {
    color: white;
  }
}