Я занимаюсь улучшением доступности в своем HTML, используя HTML5 и WAI-ARIA.
Можно ли настроить следующую настройку?
<!-- 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". Это важно?