현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Definition 요소 (<dfn>) 는 용어의 정의 인스턴스를 나타냅니다.
HTML5 사용 참고:
- 컨텐츠 범주 플로우 컨텐츠, 구문 컨텐츠, palpable 컨텐츠.
- 허용된 컨텐츠 구문 컨텐츠
하지만<dfn>
요소가 후손이 되어서는 안됩니다. - 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 구문 컨텐츠를 허용하는 모든 요소
- DOM 인터페이스
HTMLElement
속성
이 요소는 전역 속성만을 포함합니다.
HTML5에서, title 속성은 특별한 의미로 사용됩니다.
예제
다음 예제는 HTML5에서 유효합니다.
<!-- Define "The Internet" --> <p><dfn id="def-internet">The Internet</dfn> is a global system of interconnected networks that use the Internet Protocol Suite (TCP/IP) to serve billions of users worldwide.</p>
Later in the same document:
<dl> <!-- Define "World-Wide Web" and reference definition for "the Internet" --> <dt> <dfn> <abbr title="World-Wide Web">WWW</abbr> </dfn> </dt> <dd>The World-Wide Web (WWW) is a system of interlinked hypertext documents accessed on <a href="#def-internet">the Internet</a>.</dd> </dl>
결과
The Internet is a global system of interconnected networks that use the Internet Protocol Suite (TCP/IP) to serve billions of users worldwide.
- WWW
- The World-Wide Web (WWW) is a system of interlinked hypertext documents accessed on the Internet.
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<dfn>' in that specification. |
Living Standard | |
HTML5 The definition of '<dfn>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<dfn>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |