<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Lists: Negative Numbers</title>
  <style type="text/css">
   ol { counter-reset: list-item -3; }
   li { list-style: decimal; }
  </style>
 </head>
 <body>
  <p>The following two columns of numbers should be identical.</p>
  <ol start="-3">
   <li> -3. </li>
   <li> -2. </li>
   <li> -1. </li>
   <li> 0. </li>
   <li> 1. </li>
   <li> 2. </li>
   <li> 3. </li>
  </ol>
 </body>
</html>
