我正在使用 HTML5 和 WAI-ARIA 改进我的 HTML 的可访问性。
可以进行以下设置吗?
<!-- main content -->
<section id="main" role="main">
<h1>The main content</h1>
<!-- This div needs to be here for styling reasons -->
<div class="the-content">
<p>All the text that goes with the main content</p>
</div>
<!-- the sidebar -->
<aside id="sidebar" role="complementary">
<h2>A title</h2>
<p>Some text</p>
<aside>
</section>
我不确定的是我是否应该将<aside>
元素放在<section>
容器role="main"
之外。这有关系吗?