open-details-first-line-2.html 541 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html>
  5. <style>
  6. summary {
  7. display: inline; /* ::first-line appiles only to inline element. */
  8. }
  9. details::first-line {
  10. color: blue;
  11. }
  12. </style>
  13. <body>
  14. <details open>
  15. <span>This is the details.</span>
  16. <summary>Summary
  17. <!-- Need ib-split so that the summary has multiple frames. -->
  18. <div>Block in summary</div>
  19. </summary>
  20. </details>
  21. </body>
  22. </html>