Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/the-details-element/details-pseudo-elements-004.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>::details-content pseudo element supports ::before and ::after</title>
<link rel="match" href="details-pseudo-elements-004-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements">
<style>
details::details-content::before { content: "[before]"; }
details::details-content::after { content: "[after]"; }
</style>
<details open>
<summary>summary</summary>
contents
</details>