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