To tłumaczenie jest niekompletne. Pomóż przetłumaczyć ten artykuł z języka angielskiego.
Element jężyka HTML <aside>
reprezentuje pewnego rodzaju poboczną sekcję strony, która mogłaby także być uważana za jej odrębny element, nie mający związku z jej treścią. Takie sekcje są zwykle reprezentowane jako kolumny z boku artykułów lub wrtrącenia. Często zawierają one różne typy informacji takie jak powiązane reklamy, biografie autorów, aplikacje lub informacje o profilu i powiązane strony jak w przypadku blogów.
Notki dotyczące użycia:
- Nie używaj elementu
<aside>
by otagować lub odznaczyć wtrącany do artykułu tekst, gdyż tekst ten jest zwyke intrgralną częścią artykułu, a nie osobnym elementem.
- Content categories Flow content, sectioning content, palpable content.
- Permitted contentFlow content.
- Tag omission None, both the starting and ending tag are mandatory.
- Permitted parent elements Any element that accepts flow content. Note that an
<aside>
element must not be a descendant of an<address>
element. - DOM interface
HTMLElement
Atrybuty
Ten element zawiera tylko atrybuty globalne (global attributes).
Przykłady
<article> <p> The Disney movie <em>The Little Mermaid</em> was first released to theatres in 1989. </p> <aside> The movie earned $87 million during its initial release. </aside> <p> More info about the movie... </p> </article>
Specyfikacje
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of '<aside>' in that specification. |
Living Standard | |
HTML5 The definition of '<aside>' in that specification. |
Recommendation |
Obsługa w przeglądarkach
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 5 | 4.0 (2.0) | 9.0 | 11.10 | 4.1 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 2.2 | 4.0 (2.0) | 9.0 | 11.0 | 5.0 (iOS 4.2) |
Zobacz także
- Others section-related elements:
<body>
,<article>
,<section>
,<nav>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
,<hgroup>
,<header>
,<footer>
,<address>
; - Sections and outlines of an HTML5 document.