为什么我不应该在h3中嵌入h4元素?

时间:2017-04-12 09:44:34

标签: html html5 visual-studio warnings standards

为什么我不应该在h3中嵌入h4元素?
为什么遵循w3c-recommendation很重要? warning image

1 个答案:

答案 0 :(得分:0)

  

为什么我不应该在h3中嵌入h4元素?

想一下印刷文件:



h2, h3, h4 {
margin-bottom: 0;
}

h2 + p, h3 + p, h4 + p {
margin-top: 0;
}

<h2>4. I am the main heading of a section</h2>
<p>I am an introduction to the section and an overview of the main points that will be covered.</p>

<h3>5.3 I am a sub-section heading</h3>
<p>I am a sub-section. I cover points in detail.</p>

<h4>6.1.2 I am a heading of a sub-section within the sub-section</h4>
<p>I am a sub-section within a sub-section. I provide quite deep detail on a particular aspect of the topic under discussion.</p>
&#13;
&#13;
&#13;

现在考虑在 5.3 这样的子标题中嵌套像 6.1.2 这样的子标题。

考虑将前者嵌入后者中。

你能看到它吗?