gpt4 book ai didi

html - 转义 h 大纲

转载 作者:行者123 更新时间:2023-11-28 01:37:01 28 4
gpt4 key购买 nike

所以我一直在尝试找出在被低级标题吸引后添加内容的最佳方式。

<section> 
<h1>Title of Section</h1>
<h2>Related 1</h2>
<h2>Related 2</h2>
<p>I NEED THIS TO BE PART OF H1</p>
</section>

这就是它出现在大纲上的方式:h2 之后的任何内容都将与该特定部分相关。但是,我希望它转义 h2 并让它成为 h1 的一部分。

最佳答案

显式使用分段内容元素(sectionarticleasidenav),无论如何都是 what the HTML5 spec recommends :

Authors are also encouraged to explicitly wrap sections in elements of sectioning content, instead of relying on the implicit sections generated by having multiple headings in one element of sectioning content.

因此您的代码段可能如下所示:

<section> 
<h1>Title of Section</h1>
<section>
<h2>Related 1</h2>
</section>
<section>
<h2>Related 2</h2>
</section>
<p>I NEED THIS TO BE PART OF H1</p>
</section>

p 元素现在在标题“Title of Section”的范围内。

(而不是 section,如果其他三个分段内容元素之一合适,则为 consider,例如,aside。)

关于html - 转义 h 大纲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27698256/

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