PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

html5中section是什么意思

青灯夜游
青灯夜游 原创
2022-03-15 17:56:08 7952浏览

在html5中,section的意思为“节”或“区段”,用于定义文档中节(区段),比如章节、头部、底部或者文档的其他区域;section标签可以对文档中的内容进行分块或分段。

本教程操作环境:windows7系统、HTML5版、Dell G3电脑。

1.PNG

标签定义了文档的某个区域。比如章节、头部、底部或者文档的其他区域。

标签对文档中的内容进行分块或分段。

示例:文档的某个区域,解释了什么是 WWF 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
</head>
<body>

<section>
  <h1>WWF</h1>
  <p>The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the environment, formerly named the World Wildlife Fund. WWF was founded in 1961.</p>
</section>

<section>
  <h1>WWF&#39;s Panda symbol</h1>
  <p>The Panda has become the symbol of WWF. The well-known panda logo of WWF originated from a panda named Chi Chi that was transferred from the Beijing Zoo to the London Zoo in the same year of the establishment of WWF.</p>
</section>

</body>
</html>

1.PNG

说明:

标签是 HTML5 中的新标签。

IE 8 或更早版本的 IE 浏览器不支持

标签。

【相关推荐:html视频教程web前端

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。