gpt4 book ai didi

css - Etherpad-lite 有序列表格式化

转载 作者:行者123 更新时间:2023-11-28 03:07:31 25 4
gpt4 key购买 nike

我想在前五个级别分别使用十进制、大写字母、小写字母、大写罗马字母和小写罗马字母。我尝试通过在 pad.css 中编写 CSS 来做到这一点

.list-number1 li:before {
content: counter(first)") " ;
counter-increment: first;
list-style-type: lower-alpha;
}

我只尝试了一个进行测试,但没有用。我想控制计数器后的字符,它可以很好地放置 ") " 使用 contentlist-style-type 似乎没有在这里工作。有人能指出我正确的方向吗?

最佳答案

这对我有用

.list-number1 li:before {
content: counter(first, decimal)". " ;
counter-increment: first;
}
.list-number2 li:before {
content: counter(second, upper-alpha)") " ;
counter-increment: second;
}
.list-number3 li:before {
content: counter(third, lower-alpha)") " ;
counter-increment: third;
}
.list-number4 li:before {
content: counter(fourth, upper-roman)") " ;
counter-increment: fourth;
}
.list-number5 li:before {
content: counter(fifth, lower-roman)") " ;
counter-increment: fifth;
}

关于css - Etherpad-lite 有序列表格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45876269/

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