最佳答案
您可以反转计数器,然后可以将计数器与文本分开对齐.
原文链接:https://www.f2er.com/html/426692.html虽然不是IE7,但是它的默认值(内置的IE黑客取回默认值)
CSS:
ol {
padding: 0;
margin: 0;
list-style-type: decimal !ie7;
margin-left: 20px !ie7;
counter-reset:item 6; /* one higher than you need */
width: 250px;
border: 1px solid #000;
}
ol > li {
counter-increment:item -1;
text-align: center;
}
ol > li:before {
content:counter(item) ". ";
float: left;
width: 30px; background: #eee;
}
HTML