gpt4 book ai didi

html - 自定义有序列表格式

转载 作者:太空狗 更新时间:2023-10-29 14:48:19 26 4
gpt4 key购买 nike

我尝试使用有序列表 <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) ")";
}

关于html - 自定义有序列表格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4388632/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com