前端之家收集整理的这篇文章主要介绍了
html – 自定义排序列表格式,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用有序列表< ol>和每个列表项< li>
输出为1. 2. 3. …等,我希望
输出为1)2)3)…等,这可以做到吗?
您可以,但只能使用更新的浏览器(Chrome,Safari,Firefox和Opera可以使用):
ol {
counter-reset: listCounter;
}
ol li {
counter-increment: listCounter;
}
ol li:before {
content: counter(listCounter) ")";
}
原文链接:https://www.f2er.com/html/231610.html