gpt4 book ai didi

html - 有序列表
    ,使用 XHTML Strict 开始索引?

转载 作者:搜寻专家 更新时间:2023-10-31 08:03:43 25 4
gpt4 key购买 nike

有没有办法在遵循 XHTML Strict 的同时从特定索引开始有序列表?使用 start=n 效果很好,但一直是 deprecated …预期目的是通过分页恢复索引。

我看到一些对 CSS 解决方案的引用,但起始索引不能像 start 的弃用情况中的属性那样使用。

最佳答案

作为kdgregory请注意,计数器将是完成此操作并仍然保持有效文档的方法。 This article Array Studio 上的 展示了如何在 XHTML 和 CSS 中对此进行编码。以下是从他们的文章中复制过来的:

You need to write the following in your CSS:

OL#page_one { counter-reset: item }
OL#page_two { counter-reset: item 5 }
LI { display: block }
LI:before {
content: counter(item) ". ";
counter-increment: item;
display:block;
}

And, this is how your lists should be defined:

<ol id="page_one">
<li>Division Bell</li>
<li>Atom Hearth Mother</li>
<li>Relics</li>
<li>Dark Side of the Moon</li>
<li>Wish You Were Here</li>
</ol>

<ol id="page_two">
<li>The Wall</li>
<li>More</li>
<li>Piper at the gates of Dawn</li>
<li>Final Cut</li>
<li>Meddle</li>
</ol>

关于html - 有序列表 <OL>,使用 XHTML Strict 开始索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/487528/

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