gpt4 book ai didi

html - 设置有序列表的样式,并将数字放入列表项中

转载 作者:太空宇宙 更新时间:2023-11-04 03:04:21 25 4
gpt4 key购买 nike

我想知道是否可以使用 <ol> 实现类似于下面屏幕截图的效果在 HTML 中。

我希望每个白色气泡都是一个 <li><ol> ,这样一来,如果我更改它们在 HTML 中的顺序,数字将自动更新。我无法弄清楚如何将数字放入列表项本身,并在其前面添加“Example #”。

Example of what I want to do

最佳答案

您需要使用 CSS counters为此。

body {
counter-reset: section; /* Set the section counter to 0 */
}
h3::before {
counter-increment: section; /* Increment the section counter*/
content: "Section" counter(section) ": "; /* Display the counter */
}

关于html - 设置有序列表的样式,并将数字放入列表项中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30786405/

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