Advertisement
claukiller

Untitled

Dec 14th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. body {
  2. counter-reset: c1;
  3. }
  4.  
  5. section {
  6. counter-reset: c2;
  7. counter-increment: c1;
  8. }
  9.  
  10. section h2:before {
  11. content: counter(c1) "." counter(c2) ". ";
  12. }
  13.  
  14. section h2 {
  15. counter-increment: c2;
  16. counter-reset: c3;
  17. }
  18.  
  19. section h3:before {
  20. content: counter(c1) "." counter(c2) "." counter(c3) ". ";
  21. }
  22.  
  23. section h3 {
  24. counter-increment: c3;
  25. counter-reset: c4;
  26. }
  27.  
  28. section h4:before {
  29. content: counter(c1) "." counter(c2) "." counter(c3) "." counter(c4) ". ";
  30. }
  31.  
  32. section h4 {
  33. counter-increment: c4;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement