--- title:
slug: Web/HTML/Element/section translation_of: Web/HTML/Element/section ---

{{HTMLRef}}

Element <section> stanowi samodzielną sekcję tworzącą dokument HTML, której nie można przedstawić za pomocą bardziej szczegółowej semantycznie sekcji. Element <section> zazwyczaj posiada nagłówek.

Przykładowo, część nawigacyjna powinna być objęta elementem {{htmlelement("nav")}}, ale lista wyników wyszukiwania albo wyświetlana mapa i jej sterowanie nie mają dla siebie szczegółowego elementu, więc powinny zostać umieszczone w <section>.

Content categories Flow content, Sectioning content, palpable content.
Permitted content Flow content.
Tag omission {{no_tag_omission}}
Permitted parents Any element that accepts flow content. Note that a {{HTMLElement("section")}} element must not be a descendant of an {{HTMLElement("address")}} element.
Permitted ARIA roles {{ARIARole("alert")}}, {{ARIARole("alertdialog")}}, {{ARIARole("application")}}, {{ARIARole("banner")}}, {{ARIARole("complementary")}}, {{ARIARole("contentinfo")}}, {{ARIARole("dialog")}}, {{ARIARole("document")}}, {{ARIARole("feed")}}, {{ARIARole("log")}}, {{ARIARole("main")}}, {{ARIARole("marquee")}}, {{ARIARole("navigation")}}, {{ARIARole("search")}}, {{ARIARole("status")}}, {{ARIARole("tabpanel")}}
DOM interface {{domxref("HTMLElement")}}

Atrybuty

Element zawiera tylko global attributes.

Użycie

Przykład 1

Wcześniej

<div>
  <h1>Heading</h1>
  <p>Bunch of awesome content</p>
</div>

Teraz

<section>
  <h1>Heading</h1>
  <p>Bunch of awesome content</p>
</section>

Przykład 2

Wcześniej

<div>
  <h2>Heading</h2>
  <img src="bird.jpg" alt="bird">
</div>

Teraz

<section>
  <h2>Heading</h2>
  <img src="bird.jpg" alt="bird">
</section>

Specyfikacje

Specification Status Comments
{{SpecName('HTML WHATWG', 'sections.html#the-section-element', '<section>')}} {{Spec2('HTML WHATWG')}}  
{{SpecName('HTML5.1', 'sections.html#the-section-element', '<section>')}} {{Spec2('HTML5.1')}}  
{{SpecName('HTML5 W3C', 'sections.html#the-section-element', '<section>')}} {{Spec2('HTML5 W3C')}}  

Zgodność z przeglądarkami

{{Compat("html.elements.section")}}

Zobacz również