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/

link|improve this question
a jsfiddle.net example is good to understand – sandeep Nov 2 '11 at 10:10
feedback

1 Answer

What you can try is this. Style your ordered list with a very large font so that the numbers have a large font. Then style the paragraph within with a much smaller font. Something like this:

ol { font-size: 22px; }
ol p { font-size:  9px; }

Haven't tested this, but just a suggestion. You may also need to play around with the positioning of the paragraph as well.

link|improve this answer
I just tested it and it doesn't make any difference unfortunately. I've tried messing around with the number's position, since I can't really find a semantic way to bring the paragraph higher than its normal position, but I cannot seem to target the number ONLY because everything applied to the number, also applies to the paragraph. – Sotiris K. Nov 2 '11 at 11:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.