Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Deeply Nested Collapsible List</title>
- <style>
- details {
- margin: 5px 0;
- }
- summary {
- cursor: pointer;
- font-weight: bold;
- }
- ul {
- margin-left: 20px;
- list-style-type: disc;
- }
- </style>
- </head>
- <body>
- <details>
- <summary>I.5</summary>
- <ul>
- <li>
- <details>
- <summary>I.3</summary>
- <ul>
- <li>
- <details>
- <summary>I.2</summary>
- <ul>
- <li>I.1</li>
- </ul>
- </details>
- </li>
- </ul>
- </details>
- </li>
- <li>I.4</li>
- </ul>
- </details>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment