Web Components & Shadow DOM

What is the purpose of the ::slotted() pseudo-element?
::slotted(p) {
  color: blue;
  margin: 10px;
}

::slotted(*) {
  border: 1px solid #ccc;
}
Next Question (12/20)