Ordered list (OL) without the indent
Simple CSS to display an ordered list in which the list items have no indentation.
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;
}