Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] update(<dt>): general update #24842

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
40 changes: 20 additions & 20 deletions files/ko/web/html/element/dt/index.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
---
title: <dt>
title: <dt> 설명 용어
slug: Web/HTML/Element/dt
---

{{HTMLSidebar}}

**HTML `<dt>` 요소**는 설명 혹은 정의 리스트에서 용어를 나타냅니다. {{htmlelement("dl")}} 요소 안에 위치해야 합니다. 보통 {{htmlelement("dd")}} 요소가 뒤따르지만, 여러 개의 \<dt> 요소를 연속해 배치하면 바로 다음 {{htmlelement("dd")}} 요소로 한꺼번에 서술할 수 있습니다.

뒤따르는 {{htmlelement("dd")}} 요소가 `<dt>`로 지정한 용어의 정의와 기타 관련 글을 제공합니다.
**HTML `<dt>` 요소**는 설명 혹은 정의 리스트에서 용어를 정의합니다. 따라서 반드시 {{htmlelement("dl")}}(설명 목록) 요소 안에 위치해야 합니다. 보통 하나의 `<dt>` 뒤에 하나의 {{htmlelement("dd")}} 요소가 뒤따르는 것이 일반적이나, 여러 개의 `<dt>` 요소가 연속으로 있는 경우, 바로 다음 {{htmlelement("dd")}} 요소가 앞의 `<dt>` 요소들을 한 번에 설명합니다.

{{EmbedInteractiveExample("pages/tabbed/dt.html", "tabbed-standard")}}

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone [https://github.com/mdn/interactive-examples](https://github.com/mdn/interactive-examples) and send us a pull request.
<!-- The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone [https://github.com/mdn/interactive-examples](https://github.com/mdn/interactive-examples) and send us a pull request. -->

## 특성

이 요소는 [전역 특성](/ko/docs/Web/HTML/Global_attributes)만 포함합니다.

## 예제

[\<dl> 요소의 예제](/ko/docs/Web/HTML/Element/dl#예제)를 확인하세요.

## 기술 요약

<table class="properties">
wondasom marked this conversation as resolved.
Show resolved Hide resolved
<tbody>
<tr>
<th scope="row">
<a
href="/ko/docs/Web/Guide/HTML/%EC%BB%A8%ED%85%90%ED%8A%B8_%EC%B9%B4%ED%85%8C%EA%B3%A0%EB%A6%AC"
href="/ko/docs/Web/HTML/Content_categories"
>콘텐츠 카테고리</a
>
</th>
Expand All @@ -27,19 +35,19 @@ The source for this interactive example is stored in a GitHub repository. If you
<tr>
<th scope="row">가능한 콘텐츠</th>
<td>
<a href="/ko/docs/Web/Guide/HTML/컨텐트_카테고리#플로우_콘텐츠"
<a href="/ko/docs/Web/HTML/Content_categories#플로우_콘텐츠"
>플로우 콘텐츠</a
>. 단, {{htmlelement("header")}},
{{htmlelement("footer")}}, 구획 콘텐츠, 제목 콘텐츠 자손은
불가능합니다.
불가능.
</td>
</tr>
<tr>
<th scope="row">태그 생략</th>
<td>
여는 태그는 필수입니다. 바로 다음 요소가 {{htmlelement("dd")}}
또는 <code>&#x3C;dt></code>거나, 자신이 부모의 마지막 자식이라면 닫는
태그는 생략할 수 있습니다.
태그 생략 가능.
</td>
</tr>
<tr>
Expand All @@ -53,27 +61,19 @@ The source for this interactive example is stored in a GitHub repository. If you
</tr>
<tr>
<th scope="row">암시적 ARIA 역할</th>
<td><a href='/ko/docs/Web/Accessibility/ARIA/Roles/term_role'><code>term</code></a></td>
<td><a href='https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role'>해당 역할 없음</a></td>
</tr>
<tr>
<th scope="row">가능한 ARIA 역할</th>
<td>없음</td>
<td><a href="/ko/docs/Web/Accessibility/ARIA/Roles/listitem_role"><code>listitem</code></a></td>
</tr>
<tr>
<th scope="row">DOM 인터페이스</th>
<td>{{domxref("HTMLElement")}}</td>
<td>{{domxref("HTMLElement")}} Gecko 1.9.2(Firefox 4)부터 Firefox는 이 요소에 대한 HTMLSpanElement 인터페이스를 구현함.</td>
</tr>
</tbody>
</table>

## 특성

이 요소는 [전역 특성](/ko/docs/Web/HTML/Global_attributes)만 포함합니다.

## 예제

[\<dl> 요소의 예제](/ko/docs/Web/HTML/Element/dl#예제)를 확인하세요.

## 명세

{{Specifications}}
Expand Down
Loading