--- title: <section> slug: Web/HTML/Element/section tags: - Element - HTML - HTML sections - Reference - Web translation_of: Web/HTML/Element/section --- <p>{{HTMLRef}}</p> <p>L'<strong>element HTML <code><section></code></strong> representa una secció genèrica d'un document, és a dir, una agrupació temàtica de continguts, normalment amb un capçalera. Cada <code><section></code> ha d'estar identificada, mitjançant la inclusió d'una capçalera (element {{HTMLElement('h1')}}-{{HTMLElement('h6')}}) com un fill de l'element <code><section></code>.</p> <div class="note"> <p><em>Notes d'ùs :</em></p> <ul> <li>Si té sentit assenyalar per separat el contingut d'un element {{HTMLElement("section")}}, utilitzeu en el seu llocun element {{HTMLElement("article")}}.</li> <li>No utilitzeu l'element {{HTMLElement("section")}} com un contenidor genèric; per a això està {{HTMLElement ("div")}}, sobretot quan el seccionament és només per a fins d'estil. Una regla d'or és que un section hauria d'aparèixer lògicament en l'esquema d'un document.</li> </ul> </div> <table class="properties"> <tbody> <tr> <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories">Categories de contingut</a></th> <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Contingut dinàmic</a>, <a href="/en-US/docs/Web/HTML/Content_categories#Sectioning_content">contingut secció</a>, contingut palpable.</td> </tr> <tr> <th scope="row">Contingut permès</th> <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Contingut dinàmic</a>.</td> </tr> <tr> <th scope="row">Omissió de l'etiqueta</th> <td>{{no_tag_omission}}</td> </tr> <tr> <th scope="row">Elements pares permesos</th> <td>Qualsevol element que accepti <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Contingut dinàmic</a>. Tingueu en compte que un element {{HTMLElement("section")}} no ha de ser un descendent d'un element {{HTMLElement("address")}}.</td> </tr> <tr> <th scope="row">Interfície DOM</th> <td>{{domxref("HTMLElement")}}</td> </tr> </tbody> </table> <h2 id="Atributs">Atributs</h2> <p>Aquest element només inclou els <a href="/en-US/docs/Web/HTML/Global_attributes">atributs global</a>.</p> <h2 id="Exemple_1">Exemple 1</h2> <h3 id="Abans">Abans</h3> <pre><div> <h1>Heading</h1> <p>Bunch of awesome content</p> </div></pre> <h3 id="Després">D<span class="short_text" id="result_box" lang="ca"><span>esprés</span></span></h3> <pre class="brush: html"><section> <h1>Heading</h1> <p>Bunch of awesome content</p> </section> </pre> <h2 id="Exemple_2">Exemple 2</h2> <h3 id="Abans_2">Abans</h3> <pre class="brush: html"><div> <h2>Heading</h2> <img src="bird.jpg" alt="bird"> </div> </pre> <h3 id="Després_2">D<span class="short_text" id="result_box" lang="ca"><span>esprés</span></span></h3> <pre class="brush: html"><section> <h2>Heading</h2> <img src="bird.jpg" alt="bird"> </section> </pre> <h2 id="Especificacions">Especificacions</h2> <table class="standard-table"> <thead> <tr> <th scope="col">Especificació</th> <th scope="col">Estat</th> <th scope="col">Comentari</th> </tr> </thead> <tbody> <tr> <td>{{SpecName('HTML WHATWG', 'sections.html#the-section-element', '<section>')}}</td> <td>{{Spec2('HTML WHATWG')}}</td> <td> </td> </tr> <tr> <td>{{SpecName('HTML5.1', 'sections.html#the-section-element', '<section>')}}</td> <td>{{Spec2('HTML5.1')}}</td> <td> </td> </tr> <tr> <td>{{SpecName('HTML5 W3C', 'sections.html#the-section-element', '<section>')}}</td> <td>{{Spec2('HTML5 W3C')}}</td> <td> </td> </tr> </tbody> </table> <h2 id="Navegadors_compatibles">Navegadors compatibles</h2> <div>{{CompatibilityTable}}</div> <div id="compat-desktop"> <table class="compat-table"> <tbody> <tr> <th>Característica</th> <th>Chrome</th> <th>Firefox (Gecko)</th> <th>Internet Explorer</th> <th>Opera</th> <th>Safari</th> </tr> <tr> <td>Suport bàsic</td> <td>5</td> <td>{{CompatGeckoDesktop("2.0")}}</td> <td>9.0</td> <td>11.10</td> <td>4.1</td> </tr> </tbody> </table> </div> <div id="compat-mobile"> <table class="compat-table"> <tbody> <tr> <th>Característica</th> <th>Android</th> <th>Firefox Mobile (Gecko)</th> <th>IE Mobile</th> <th>Opera Mobile</th> <th>Safari Mobile</th> </tr> <tr> <td>Suport bàsic</td> <td>2.2</td> <td>{{CompatGeckoMobile("2.0")}}</td> <td>9.0</td> <td>11.0</td> <td>5.0 (iOS 4.2)</td> </tr> </tbody> </table> </div> <h2 id="Veure">Veure</h2> <ul> <li>Altres elements section relacionats : {{HTMLElement("body")}}, {{HTMLElement("nav")}}, {{HTMLElement("article")}}, {{HTMLElement("aside")}}, {{HTMLElement("h1")}}, {{HTMLElement("h2")}}, {{HTMLElement("h3")}}, {{HTMLElement("h4")}}, {{HTMLElement("h5")}}, {{HTMLElement("h6")}}, {{HTMLElement("hgroup")}}, {{HTMLElement("header")}}, {{HTMLElement("footer")}}, {{HTMLElement("address")}};</li> <li><a href="/en-US/docs/Sections_and_Outlines_of_an_HTML5_document">Seccions i esquemes d'un document HTML5</a>.</li> </ul>