×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: CSS
Posted by: Marosi Dóra
Added: Aug 24, 2017 9:06 AM
Views: 2470
Tags: no tags
  1. ol {counter-reset: item;}
  2. ol li {display: block;}
  3. ol li:before {
  4.    content: counter(item) ". ";
  5.    counter-increment: item;
  6.    font-weight: 500;
  7. }