我试图创建一个 OL,但出于某种原因,这可能是非常基本的,这个 OL 没有出现在 Blue Div 中。这是为什么?

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

最佳答案

为了在 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

关于html - DIV 之外的 OL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5532727/

10-14 17:31