I have the following HTML
<h1> Dummy title here</h1>
<ol>
<li>
<p>Dummy paragraph here with lots of lines...</p>
</li>
<li>
<p>Another dummy paragraph with lots of lines...</p>
</li>
</ol>
And I want to style it like the image shown. http://i.imgur.com/fOhom.jpg
The problem is that I cannot find a way to bring the numbers down to the paragraphs level. Instead they start from each paragraph's first line and I end up with an unwanted result.
Any guidance please?
**
EDIT
**
I believe I have come up with a possible solution, not 100% compliant with the standards as I use a pseudo-class but still it is a viable solution. So here it is.
Using the structure exactly as I described it in my question I have come up with the following CSS
ol {
list-style: none;
}
ol li {
counter-increment: item;
}
ol p:before {
content: counter(item);
font-size: 80px;
float:left;
margin-right:10px;
}
As sandeep requested, here's a jsfiddle http://jsfiddle.net/sm8AT/