Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/01/2015, 09:46
cybervandal
 
Fecha de Ingreso: noviembre-2012
Mensajes: 76
Antigüedad: 11 años, 5 meses
Puntos: 3
Diferencia entre section y article en html5

No me queda claro como usuarlos, cual engloba al otro.
He googleado y en unos sitios te pone una cosa y en otros justo la contraria.
Cual seria la opción correcta:

<section>
<header><h1>Listado de noticias</h1></header>
<article><header><h2>Noticia 1</h2></header></article>
<article><header><h2>Noticia 2</h2></header></article>
<article><header><h2>Noticia 3</h2></header></article>
</section>

o:

<article>
<header><h1>Listado de noticias</h1></header>
<section> <header><h2>Noticia 1</h2></header> </section>
<section> <header><h2>Noticia 2</h2></header> </section>
<section> <header><h2>Noticia 3</h2></header> </section>
</article>

Saludos!