Web Components & Shadow DOM

What is the purpose of the :defined pseudo-class?
:defined {
  display: block;
}

:not(:defined) {
  display: none;
  opacity: 0;
}
Next Question (15/20)