HTML5では、子要素としてeadingを使用するasectionと、 eading要素の次の兄弟であるaの違いは何ですか?同じ違いが代わりに要素にも当てはまりますか?hsectionhdivsection
<section>
<h1>First section</h1>
<!-- other content -->
</section>
<!-- vs. -->
<h1>Second section</h1>
<section>
<!-- other content -->
</section>