I am trying to change the arror colour only for (Level 2 and Level 3). However, I've tried this method from How to style the arrow of <details> <summary> elements? but it doesn't work. Anyone can help? Thanks in advance.
details summary::-webkit-details-marker {
color:red;
background:white;
}
<details>
<summary>Level 1</summary>
<details>
<summary>Level 2</summary>
<details>
<summary>Level 3</summary>
</details>
</details>
</details>
The method that I tried is inserting this to CSS.
details summary::-webkit-details-marker {
color:red;
background:white;
}
Here is the jsFiddle