<style>
/* example: style based on attribute */
details > summary {
  color: red;
}
details[open] > summary {
  color: green;
}
</style>
<details>
  <summary>Some text goes here</summary>
  ... some more text goes here.
</details>