현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
The HTML <aside>
element represents a section of the page with content connected tangentially to the rest, which could be considered separate from that content. These sections are often represented as sidebars or inserts. They often contain the definitions on the sidebars, such as definitions from the glossary; there may also be other types of information, such as related advertisements; the biography of the author; web applications; profile information or related links on the blog.
Usage notes:
- Do not use the
<aside>
element to tag parenthesized text, as this kind of text is considered part of the main flow.
- 컨텐츠 범주 플로우 컨텐츠, 구획 컨텐츠, palpable 컨텐츠.
- 허용된 컨텐츠F플로우 컨텐츠.
- 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 플로우 컨텐츠를 허용하는 요소.
<aside>
요소는<address>
요소의 후손이 될수 없다는 점을 주의. - DOM 인터페이스
HTMLElement
속성
이 요소는 전역 속성만을 포함합니다.
예제
<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>
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<aside>' in that specification. |
Living Standard | |
HTML5 The definition of '<aside>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 5 | 4.0 (2.0) | 9.0 | 11.10 | 4.1 |
기능 | 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) |
같이 보기
- 다른 구획 관련 요소들:
<body>
,<article>
,<section>
,<nav>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
,<hgroup>
,<header>
,<footer>
,<address>
; - Sections and outlines of an HTML5 document.