Hi, with the following code snippet, the border of <details> is incorrectly converted. Is <details> currently supported? Thanks.
<style>
details {
border: 1px solid silver;
border-radius: 2px;
padding: 0.5rem;
}
details[open] summary {
border-bottom: 1px solid silver;
}
</style>
<details open>
<summary>1 + 1 = ?</summary>
2...
or 3?
</details>