Guest User

Untitled

a guest
Sep 6th, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Deeply Nested Collapsible List</title>
  5. <style>
  6. details {
  7. margin: 5px 0;
  8. }
  9.  
  10. summary {
  11. cursor: pointer;
  12. font-weight: bold;
  13. }
  14.  
  15. ul {
  16. margin-left: 20px;
  17. list-style-type: disc;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22.  
  23. <details>
  24. <summary>I.5</summary>
  25. <ul>
  26. <li>
  27. <details>
  28. <summary>I.3</summary>
  29. <ul>
  30. <li>
  31. <details>
  32. <summary>I.2</summary>
  33. <ul>
  34. <li>I.1</li>
  35. </ul>
  36. </details>
  37. </li>
  38. </ul>
  39. </details>
  40. </li>
  41. <li>I.4</li>
  42. </ul>
  43. </details>
  44.  
  45. </body>
  46. </html>
  47.  
Advertisement
Add Comment
Please, Sign In to add comment