Ver Mensaje Individual
  #22 (permalink)  
Antiguo 18/05/2015, 21:13
superweb360
(Desactivado)
 
Fecha de Ingreso: abril-2015
Ubicación: España
Mensajes: 616
Antigüedad: 9 años, 11 meses
Puntos: 74
Respuesta: dudas con html5 semantico

En esta web pone que los <section> pueden contener <article> y también viceversa. http://html5doctor.com/the-article-element/

An <article> with <section>s. You can use the <section> element to split the article into logical groups of content with headings:

Código HTML:
Ver original
  1.   <h1>Apple varieties</h1>
  2.   <p>The apple is the pomaceous fruit of the apple tree...</p>
  3.  
  4.   <section>
  5.     <h2>Red Delicious</h2>
  6.     <p>These bright red apples are the most common found in many supermarkets...</p>
  7.   </section>
  8.  
  9.   <section>
  10.     <h2>Granny Smith</h2>
  11.     <p>These juicy, green apples make a great filling for apple pies...</p>
  12.   </section>
  13.    

A <section> containing <article>s

Código HTML:
Ver original
  1.   <h1>Articles on: Fruit</h1>
  2.  
  3.   <article>
  4.     <h2>Apple</h2>
  5.     <p>The apple is the pomaceous fruit of the apple tree...</p>
  6.   </article>
  7.  
  8.   <article>
  9.     <h2>Orange</h2>
  10.     <p>The orange is a hybrid of ancient cultivated origin, possibly between pomelo and tangerine...</p>
  11.   </article>
  12.  
  13.   <article>
  14.     <h2>Banana</h2>
  15.     <p>Bananas come in a variety of sizes and colors when ripe, including yellow, purple, and red...</p>
  16.   </article>
  17.