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(<dd>): update content & structure #25132

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 22 additions & 20 deletions files/ko/web/html/element/dd/index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
---
title: <dd>
title: <dd> 설명 세부정보 요소
slug: Web/HTML/Element/dd
l10n:
sourceCommit: 9231a7046973685f4600e1891fa644ecce41ef3b
---

{{HTMLSidebar}}

**HTML `<dd>` 요소**는 정의 목록 요소({{HTMLElement("dl")}})에서 앞선 용어({{htmlelement("dt")}})에 대한 설명, 정의, 또는 값을 제공합니다.
**HTML `<dd>` 요소**는 설명 목록 요소({{HTMLElement("dl")}})에서 앞선 용어({{htmlelement("dt")}})에 대한 설명, 정의, 또는 값을 제공합니다.

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

## 특성

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

## 예제

예시를 보러면 [`<dl>` 예제](/ko/docs/Web/HTML/Element/dl#예제)를 참고하세요.

## 기술 요약

<table class="properties">
<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 @@ -23,9 +35,9 @@ slug: Web/HTML/Element/dd
<tr>
<th scope="row">가능한 콘텐츠</th>
<td>
<a href="/ko/docs/Web/Guide/HTML/컨텐트_카테고리#플로우_콘텐츠"
<a href="/ko/docs/Web/HTML/Content_categories#플로우_콘텐츠"
>플로우 콘텐츠</a
>.
>
</td>
</tr>
<tr>
Expand All @@ -39,8 +51,7 @@ slug: Web/HTML/Element/dd
<tr>
<th scope="row">가능한 부모 요소</th>
<td>
{{HTMLElement("dl")}} 또는 ({{glossary("WHATWG")}}
HTML에서) {{HTMLElement("dl")}} 안의 {{htmlelement("div")}}
{{HTMLElement("dl")}} 또는 {{HTMLElement("dl")}}의 자식 요소인 {{htmlelement("div")}}. 이 요소는 {{HTMLElement("dt")}} 또는 다른 {{HTMLElement("dd")}} 요소 뒤에 사용할 수 있습니다.
</td>
</tr>
<tr>
Expand All @@ -49,11 +60,13 @@ slug: Web/HTML/Element/dd
</tr>
<tr>
<th scope="row">암시적 ARIA 역할</th>
<td><a href='/ko/docs/Web/Accessibility/ARIA/Roles/definition_role'><code>definition</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>허용되는 <code>role</code> 없음</td>
</tr>
<tr>
<th scope="row">DOM 인터페이스</th>
Expand All @@ -62,17 +75,6 @@ slug: Web/HTML/Element/dd
</tbody>
</table>

## 특성

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

- `nowrap` {{Non-standard_inline}}
- : 값이 `yes`면 너비의 끝에서 정의 텍스트의 줄이 바뀌지 않습니다. 기본값은 `no`입니다.

## 예제

예제를 보려면 [`<dl>` 예제](/ko/docs/Web/HTML/Element/dl#%ec%98%88%ec%a0%9c)를 보세요.

## 명세

{{Specifications}}
Expand Down
Loading