From 302874dd73d5b35df77e3e60683baa6125508c1e Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 29 Nov 2024 15:25:47 +0100 Subject: [PATCH 1/7] update(dt): update docs structure & update intro --- files/ko/web/html/element/dt/index.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index e3f1c56f52c084..d3b0228125de95 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -1,18 +1,26 @@ --- -title:
+title:
설명 용어 slug: Web/HTML/Element/dt --- {{HTMLSidebar}} -**HTML `
` 요소**는 설명 혹은 정의 리스트에서 용어를 나타냅니다. {{htmlelement("dl")}} 요소 안에 위치해야 합니다. 보통 {{htmlelement("dd")}} 요소가 뒤따르지만, 여러 개의 \
요소를 연속해 배치하면 바로 다음 {{htmlelement("dd")}} 요소로 한꺼번에 서술할 수 있습니다. - -뒤따르는 {{htmlelement("dd")}} 요소가 `
`로 지정한 용어의 정의와 기타 관련 글을 제공합니다. +**HTML `
` 요소**는 설명 혹은 정의 리스트에서 용어를 정의합니다. 따라서 반드시 {{htmlelement("dl")}}(설명 목록) 요소 안에 위치해야 합니다. 보통 하나의 `
` 뒤에 하나의 {{htmlelement("dd")}} 요소가 뒤따르는 것이 일반적이나, 여러 개의 `
` 요소가 연속으로 있는 경우, 바로 다음 {{htmlelement("dd")}} 요소가 앞의 `
` 요소들을 한 번에 설명합니다. {{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. + +## 특성 + +이 요소는 [전역 특성](/ko/docs/Web/HTML/Global_attributes)만 포함합니다. + +## 예제 + +[\
요소의 예제](/ko/docs/Web/HTML/Element/dl#예제)를 확인하세요. + +## 기술 요약 @@ -66,13 +74,6 @@ The source for this interactive example is stored in a GitHub repository. If you
-## 특성 - -이 요소는 [전역 특성](/ko/docs/Web/HTML/Global_attributes)만 포함합니다. - -## 예제 - -[\
요소의 예제](/ko/docs/Web/HTML/Element/dl#예제)를 확인하세요. ## 명세 From d9ea3bca96f997563785549311462afbf1a34a97 Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 29 Nov 2024 15:34:04 +0100 Subject: [PATCH 2/7] update(dt): comment out no longer public instruction --- files/ko/web/html/element/dt/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index d3b0228125de95..3b7567960ac6ca 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -9,7 +9,7 @@ slug: Web/HTML/Element/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. + ## 특성 From 687024e9678955ae50dd6bd616d683c1d69b1993 Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 29 Nov 2024 15:34:45 +0100 Subject: [PATCH 3/7] update(dt): update tech summary(fix link, update a11y content, etc) --- files/ko/web/html/element/dt/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index 3b7567960ac6ca..1b52ed843e5267 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -26,7 +26,7 @@ slug: Web/HTML/Element/dt 콘텐츠 카테고리 @@ -35,11 +35,11 @@ slug: Web/HTML/Element/dt 가능한 콘텐츠 - 플로우 콘텐츠. 단, {{htmlelement("header")}}, {{htmlelement("footer")}}, 구획 콘텐츠, 제목 콘텐츠 자손은 - 불가능합니다. + 불가능. @@ -47,7 +47,7 @@ slug: Web/HTML/Element/dt 여는 태그는 필수입니다. 바로 다음 요소가 {{htmlelement("dd")}} 또는 <dt>거나, 자신이 부모의 마지막 자식이라면 닫는 - 태그는 생략할 수 있습니다. + 태그 생략 가능. @@ -61,15 +61,15 @@ slug: Web/HTML/Element/dt 암시적 ARIA 역할 - term + 해당 역할 없음 가능한 ARIA 역할 - 없음 + listitem DOM 인터페이스 - {{domxref("HTMLElement")}} + {{domxref("HTMLElement")}} Gecko 1.9.2(Firefox 4)부터 Firefox는 이 요소에 대한 HTMLSpanElement 인터페이스를 구현함. From 18a3651500628bc631a15764809566a01412aff7 Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 6 Dec 2024 14:41:47 +0100 Subject: [PATCH 4/7] Update files/ko/web/html/element/dt/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/html/element/dt/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index 1b52ed843e5267..4f5a3a080a7196 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -11,7 +11,6 @@ slug: Web/HTML/Element/dt - ## 특성 이 요소는 [전역 특성](/ko/docs/Web/HTML/Global_attributes)만 포함합니다. From 6fdabf6c6516f186691d77d43162664d804cb18b Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 6 Dec 2024 14:41:55 +0100 Subject: [PATCH 5/7] Update files/ko/web/html/element/dt/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/html/element/dt/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index 4f5a3a080a7196..d83c45ed32c398 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -20,6 +20,7 @@ slug: Web/HTML/Element/dt [\
요소의 예제](/ko/docs/Web/HTML/Element/dl#예제)를 확인하세요. ## 기술 요약 + From a5fb628652e52b798dab286e5ad66d8a02b1b650 Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 6 Dec 2024 14:42:02 +0100 Subject: [PATCH 6/7] Update files/ko/web/html/element/dt/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/html/element/dt/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index d83c45ed32c398..29aee1e8331c49 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -65,7 +65,7 @@ slug: Web/HTML/Element/dt - + From ea6ff16b565e82678657c664898dd4a7dbbc239b Mon Sep 17 00:00:00 2001 From: Dasom Won Date: Fri, 6 Dec 2024 14:42:08 +0100 Subject: [PATCH 7/7] Update files/ko/web/html/element/dt/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/html/element/dt/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/files/ko/web/html/element/dt/index.md b/files/ko/web/html/element/dt/index.md index 29aee1e8331c49..cc4f1a6911d9fd 100644 --- a/files/ko/web/html/element/dt/index.md +++ b/files/ko/web/html/element/dt/index.md @@ -74,7 +74,6 @@ slug: Web/HTML/Element/dt
가능한 ARIA 역할listitemlistitem
DOM 인터페이스
- ## 명세 {{Specifications}}