HTML <section> 标签


示例

文档中的两个部分:

<section>
<h2>WWF History</h2>
<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>
<h2>WWF's Symbol</h2>
<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>
亲自试一试 »

定义和用法

这个<section>标签定义文档中的一个部分。


浏览器支持

表中的数字指定完全支持该元素的第一个浏览器版本。

Element
<section> 5.0 9.0 4.0 5.0 11.5

全局属性

这个<section>标签还支持HTML 中的全局属性


事件属性

这个<section>标签还支持HTML 中的事件属性


相关页面

HTML DOM 参考:节对象


默认 CSS 设置

大多数浏览器都会显示<section>具有以下默认值的元素:

示例

section {
  display: block;
}
亲自试一试 »