+ 2
How can I (in html) let the <details> tag output no to show details?
When I for example write a code like this <details>example</details> It outputs details. Can I change the details to another word
3 Respostas
+ 2
You're missing some tags there.
<details>
<summary>Example</summary>
<p> content </p>
</details>
+ 2
You're Welcome
+ 1
Thanks