section
在 HTML5 中,以h
eading 作为子元素的 a 和作为eading 元素section
的下一个兄弟元素的 a 有什么区别h
?相同的差异是否适用于div
元素而不是section
?
<section>
<h1>First section</h1>
<!-- other content -->
</section>
<!-- vs. -->
<h1>Second section</h1>
<section>
<!-- other content -->
</section>