Question #85

Author: admin
tags: SCSS  
.product-card {
  &__description {
    body.dark & {
      color: white;
      background: gray;
    }
  }
}
In which CSS will this SCSS code be compiled?
.product-card__description, body.dark {
  color: white;
  background: gray;
}
.product-card__description body.dark {
  color: white;
  background: gray;
}
.product-card, .product-card__description, body.dark {
  color: white;
  background: gray;
}
.product-card .product-card__description body.dark {
  color: white;
  background: gray;
}
.product-card body.dark.product-card__description {
  color: white;
  background: gray;
}
body.dark .product-card__description {
  color: white;
  background: gray;
}
Rate the difficulty of the question:
easyhard