Trying to add a border-bottom: 1px solid #ccc to an li in an ol.

I want the number of the ol to be inside the border not outside. Right now the border it not below the numbers.

I have these classes set now:

ol {padding:0 0 0 30px;margin:0;}
ol li {font-size:15px;font-weight:bold;color:#666;border-bottom:1px solid #ccc;padding:0 0 15px;margin:0 10px 15px 0;}

Basically want 15px of padding around the li and the borders to be the full width of the ol.

Any direction on this would be great thanks!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

I think that you want to add

list-style-position: inside;

to your ol li or ol style.

link|improve this answer
Thanks that did it... didnt know about that one. – estern Dec 13 '10 at 16:19
pleasure! I lost hours over that one one time... – jackreichert Dec 13 '10 at 20:01
There seems to be an issue in ie7 now with this css property – estern Dec 14 '10 at 3:06
feedback

Your Answer

 
or
required, but never shown

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