部分和文章用法与示例

时间:2015-02-23 10:53:41

标签: html5

有很多不同的答案,一周后我比以前更困惑。 主要问题是部分和文章。 让我们举一个例子,这个页面描述了一个城镇:

<h1>TownName</h1>
<p>Description</p>

<h2>What to see</h2>
<h3>Sightseeing Nr1</h3>
<p>Its description</p>
<h3>Sightseeing Nr2</h3>
<p>Its description</p>
...
<h2>How to get</h2>
<h3>By car</h3>
<p>Description</p>
<h3>By train</h3>
<p>Description</p

<h2>Map</h2>
<p>Description</p>

<h2>...</h2>
...
etc.

对于某些人而言,某些h2有h3。我应该为每个h2使用文章,也为h3使用嵌套文章吗? (上下文可以分开,所以..)

或者我应该使用h3的部分?

或者我应该使用&#34; h2&#34;和每个h3的文章?

h1及其描述也是一篇文章或部分?

这很难,我也添加了一个我投影的页面图像,我几乎可以肯定我不必使用部分来包装和主要元素..

enter image description here

1 个答案:

答案 0 :(得分:0)

振亚,这是来自W3学校

**Nesting Semantic Elements**
In the HTML5 standard, the <article> element defines a complete, self-contained block of related elements.

The <section> element is defined as a block of related elements.

Can we use the definitions to decide how to nest elements? No, we cannot!

On the Internet, you will find HTML pages with <section> elements containing <article> elements, and <article> elements containing <sections> elements.

You will also find pages with <section> elements containing <section> elements, and <article> elements containing <article> elements.