开发者

OL outside of DIV

Im trying to create an OL but for some reason, which is probably very basic, this OL doesnt appear within the Blue Div. Why is开发者_开发百科 that?

http://jsfiddle.net/NinjaSk8ter/6AkFR/


In order to have the numbering on the ol:

ol {
    padding-left: 0.5em;
}

ol li {
    list-style-type: decimal; /* or 'decimal-leading-zero', 'upper-alpha', 'lower-alpha'... */
    list-style-position: outside; /* or 'inside' */
    margin-left: 1em; /* gives 'room' for the numbers to appear in */
}

JS Fiddle.


Uncheck the "Normalized CSS" checkbox in jsFiddle....

Live demo: http://jsfiddle.net/6AkFR/1/

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜