I have a list..

<ol>
    <li>Login</li>
    <li>Address</li>
    <li>Shipping</li>
</ol>

It shows the decimal numbers fine, but when I set the <li> to inline or inline-block, the numbers vanish! I saw other places online mentioned that I have to ensure I have enough margin and padding.. and I am sure that I do (10 px of each!) Is there some other reason the numbers might be disappearing? I know from firebug that as soon as I uncheck 'inline' they come back...

the css is

ol{
padding: 20px; 
list-style-type:decimal;
}
ol li {
display: inline;
margin: 0 10px;
padding: 0 10px;
}
link|improve this question

Try increasing the margin value and see if it makes any difference – programmer Jan 10 '11 at 5:25
Just to be thorough, have you tried more than 10px? – jtbandes Jan 10 '11 at 5:25
feedback

2 Answers

up vote 3 down vote accepted

I don't know why this happens, but it can be solved by floating left instead of display:inline

See http://www.jsfiddle.net/CMKzK/

ol{
padding: 20px; 
    list-style-type:decimal;

}
ol li {
float:left;
margin: 0 10px;
padding: 0 10px;
}
link|improve this answer
feedback

If you don't care about old versions of IE, you can use automatic counters and numbering

Otherwise you should specify the numbers manually (@Babiker's solution), or float your li's (@Eric Fortis' solution).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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