本篇文章主要的介绍了关于HTML5 section标签的定义以及它的用法,最后还有一个案例总结,现在让我们开始阅读这篇文章吧
先来解释下html5 section标签的意思:
html5 section标签定义了文档中的节(section、区段)。比如章节、页眉、页脚或文档中的其他部分。
看一个实例让你更加了解section标签:
文档中的区段,解释了 PRC:
<section> <h1>PHP中文网</h1> <p>这里是PHP中文网,网址是www.php.cn</p> </section>
实例效果如下图:
现在说说section标签的注意点:
section 不是一个专用来做容器的标签,如果仅仅是用于设置样式或脚本处理,专用的是 div
section 里应该有 标题(h1~6),但文章中推荐用 article 来代替
一条简单的准则是,只有元素内容会被列在文档大纲中时,才适合用section元素。
section的作用是对页面上的内容进行分块,如各个有标题的版块、功能区或对文章进行分段,不要与有自己完整、独立内容的article混淆。
html5 section标签的用法:
html5引入了 w3对 w3对 现在来看一个案例: 在这里,我们用 或者: HTML5 section标签的总结: 我们用 【小编推荐】 如何给html中的pre标签中的文字换行?html pre标签的使用实例 HTML iframe标签怎么使用?HTML iframe标签的使用实例介绍 Atas ialah kandungan terperinci html5 section标签是什么意思?html5 section标签的用法总结. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!<body>
<header></header>
<div id=“content”>
<section></section>
<section></section>
</div>
<footer></footer>
</body>
<section id=”content”>
<section></section>
<section></section>
</section>
<div id=”content”>
<div></div>
<div></div>
</div>