0
Can you nest an <article> in an <aside>?
For things like widgets? Or would you use a <section>?
5 ответов
+ 2
For things like widget, use of <section> or <div> is more compliant to Html5 semanctic logic recommendations ;)
+ 2
@louis Milotte:
I was answering to question "can you nest an <article> in an <aside>": I don't advise to not use <aside> element, but replace <article> by something else... In example:
<aside>
<section>
<div>widget</div>
<div>widget</div>
<div>widget</div>
</section>
<section>
<div>advertissement</div>
<div>advertissement</div>
</section>
<section>
<ul>
<li>link</li>
<li>link</li>
<li>link</li>
</ul>
</section>
</aside>
^^
0
yes
0
Technically, yes. Should you? No.
<article>
<header></header>
<section></section><aside></aside>
<footer></footer>
</article>
0
visph, aside has same functionality and is actually suggested by frameworks for html5.