::details-content
The CSS ::details-content
pseudo-element provides a way to select and apply styles to the inner parts of a <details>
element without leaking styles to the <summary>
.
details::details-content {
background-color: hsl(0 0% 0%);
}
Syntax
<element-selector::details-content {}
We say …