问题描述
有这样的标记: < aside>
< div class =widget>
< h2>最新消息< / h2>
< ul> ...< / ul>
< a>更多新闻< / a>
< / div>
< div class =widget>
< h2>选择网站主题< / h2>
< input type =select/>
< / div>
< div class =widget>
< h2>时事通讯订阅< / h2>
< form> ...< / form>
< / div>
< div class =widget>
< h2>相关文章< / h2>
< ul> ...< / ul>
< / div>
< / aside>
这里的标签更合适:< div>
或< section>
?
部分应该只用于< article>
tag并且永远不会在< aside>
?
HTML 5规范并不禁止您在旁边的
元素中使用部分
元素。除了元素被允许在其中包含流内容,并且包含部分
元素。
然而, ,即使现在HTML5中的 div
元素应该是最后的手段的分段元素,使用部分$ c $在这种情况下违背元素的意图。从我们看到的规范:
现在,旁边的部分绝对不属于整个文档的大纲,因此对于您的问题的简短回答是使用 div
。或者,因为你看起来好像里面有四个项目,所以你可以考虑一个 ul
和四个 li
s然后用规则替换ul li
。
Having a markup like this:
<aside>
<div class="widget">
<h2>Latest news</h2>
<ul>...</ul>
<a>more news</a>
</div>
<div class="widget">
<h2>Choose site theme</h2>
<input type="select" />
</div>
<div class="widget">
<h2>Newsletter subscription</h2>
<form>...</form>
</div>
<div class="widget">
<h2>Related articles</h2>
<ul>...</ul>
</div>
</aside>
Which tag is more appropriate here: <div>
or <section>
?
Is section supposed to be used only inside <article>
tag and never inside <aside>
?
The HTML 5 spec does not prohibit you from using the section
element inside of an aside
element. The aside
element is allowed to have flow content inside, and that includes the section
element.
However, even though the div
element is now, in HTML5, supposed to be the sectioning element of "last resort", using section
in this context goes against the intent of the element. From the spec we see:
Now, little "sections" of an aside are definitely not something that belong in the outline of the entire document, so the short answer to your question is to use div
. Alternatively, because your aside looks like it has four "items" inside, you might consider a ul
with four li
s and then style with the rule aside ul li
.
这篇关于我应该使用< section> < aside>里面的标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!