설명
The Definition (<dfn>
) HTML element represents the defining instance of a term.
<dfn> HTML element는 용어를 의미를 정의하기 위해 사용된다. (instance의 의미는 변형, represent도 의역)
HTML5 Usage Notes:
- The <dfn> element marks the term being defined; the definition of the term should be given by the surrounding <p>, <section> or definition list group (usually a <dt>, <dd> pair).
- <dfn> element는 정의되고 있는 용어를 표시한다. 용어의 뜻은 <p> 혹은 <section> 태그로 둘러싸서 표현하거나 <dt>,<dd>와 같은 definition list group으로 표현한다.
- The exact value of the term being defined is determined by the following rules:
- 정의하고자 하는 용어의 정확한 value는, 다음 규칙에 따라 결정한다.
- If the <dfn> element has a title attribute, then the term is the value of that attribute.
- <dfn> element가 title 속성을 가지고 있을 경우, 용어는 해당 속성의 value이다.
- Else, if it contains only an <abbr> element with a title attribute, then the term is the value of that attribute.
- 그렇지 않고 <dfn> element안에 title 속성을 가진 <abbr> element를 포함하고 있다면, <abbr>안의 title속성이 정의하고자 하는 용어이다.
- Otherwise, the text content of the <dfn> element is the term being defined.
- 그 외에는 <dfn> element의 text conent가 정의하고자 하는 용어이다.
속성
Like all HTML elements, this element provides the global attributes. It defines no other attributes. In HTML5, the title attribute has special meaning, as noted above.
모든 HTML element처럼 이 element는 global 속성을 사용할 수 있다. 그 외 다른 속성들은 사용하지 않는다. HTML5에서는 위에 기술한대로 title 속성이 특별한 의미를 갖는다.
예제
<!-- 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>
<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>
DOM Interface
This element implements the HTMLElement
interface.
이 요소는 HTMLElement 인터페이스를 구현한다.
참고
- 참고 - https://developer.mozilla.org/en/HTML/Element/dfn
- Elements related to definition lists:
<dl>
,<dt>
,<dd>
<abbr>