gpt4 book ai didi

带括号的 HTML 编号

转载 作者:太空狗 更新时间:2023-10-29 16:50:39 35 4
gpt4 key购买 nike

请问如何设置这种格式的编号:

1) number 1
2) number 2
3) ...

在 HTML 中?

我只找到了一种获取这种格式的方法:

1. number 1
2. number 2
3. ...

数字后没有括号。

另外,是否可以设置开始,编号类型,但不能设置其他格式。

最佳答案

您可以使用有序列表实现此目的 <ol> :

ol {
counter-reset: list;
}
ol > li {
list-style: none;
}
ol > li:before {
content: counter(list) ") ";
counter-increment: list;
}
<ol>
<li>some text</li>
<li>some more text</li>
<li>some further text</li>
</ol>

sample JSFiddle

引用自:Ordered list (HTML) lower-alpha with right parentheses?

关于带括号的 HTML 编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22530982/

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