Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <style>
  2. ul {
  3. counter-reset: counter;
  4. }
  5. li::before {
  6. counter-increment: counter;
  7. content: counters(counter, '.') ' ';
  8. }
  9. </style>
  10. <ul>
  11. <li>List item</li>
  12. <li>List item</li>
  13. <li>
  14. List item
  15. <ul>
  16. <li>List item</li>
  17. <li>List item</li>
  18. <li>List item</li>
  19. </ul>
  20. </li>
  21. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement