Ordered list (OL) without the indent

Simple CSS to display an ordered list in which the list items have no indentation.

by David Waterston

HTML

<span>This is text.</span>

<ol>
   <li>a<br>Second line.</li>
   <li>b</li>
   <li>c</li>
</ol>

<span>This is also text.</span>

CSS

ol {
   padding-left:1.2em;
}