Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. .page-list {
  8. counter-reset: section;
  9. list-style-type: none;
  10. }
  11. .page-list-item {
  12. list-style: none;
  13. }
  14. .page-list-item:before {
  15. content: '';
  16. background: url(icon.png) no-repeat;
  17. width: 1em;
  18. height: 1em;
  19. padding-left: 1.5em;
  20. }
  21. .page-list-item > a:before {
  22. counter-increment: section;
  23. content: counter(section)". ";
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <ol class="page-list">
  29. <li class="page-list-item">
  30. <a href="#">AAAA</a>
  31. </li>
  32. <li class="page-list-item">
  33. <a href="#">BBBB</a>
  34. </li>
  35. <li class="page-list-item">
  36. <a href="#">CCCC</a>
  37. </li>
  38. </ul>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement