如果我有一个页面区域,其中包含用于过滤搜索结果的不同选项(带有链接、复选框、选择等的无序列表)。应该使用什么 html5 标签来包装过滤器?“section”标签、“nav”标签还是别的什么?
<div id="search-filters"> <!-- This should be a div, a nav, a section? -->
<h3>Price</h3>
<ul>
<li>less than 100</li>
<li>100 - 200</li>
<li>more than 200</li>
</ul>
<h3>Brand</h3>
<ul>
<li>Brand A</li>
<li>Brand B</li>
<li>Brand C</li>
</ul>
...
</div>
<section id="search_results">
...
</section>