Web Components & Shadow DOM

What is the purpose of the part attribute in Web Components?
<!-- Inside Shadow DOM -->
<div part="header">Header</div>
<div part="content">Content</div>

/* Outside styling */
::part(header) {
  color: blue;
}
::part(content) {
  padding: 20px;
}
Next Question (20/20)