0

margin-auto在有序列表上设置时遇到问题。设置有点复杂,否则我会创建一个小提琴。你可以在这里查看

我需要灰色背景上的有序列表来自动适应它,具体取决于有多少列表项。现在这是我正在使用的代码:

ol {
counter-reset: level1;
font-size: 11px;
margin: 0 auto;
width: 50%;
}

ol li:before {
content: counter(level1, decimal) " ";
counter-increment: level1;
}

.ngg-gallery-list li {
color: gray;
display: inline-block;
margin: 5px 2px !important;
overflow: hidden;
}

如果列表项超过 7-8 个,则 50% 的宽度可以使列表居中,但如果只有 3 或 5 个,则看起来不太好。我还有什么其他解决方案?

4

1 回答 1

1

尝试.ngg-gallery-list { text-align: center; }

于 2012-10-02T11:13:16.553 回答