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] fix: remove duplicate headings #17716

Merged
merged 3 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 0 additions & 12 deletions files/ko/web/api/element/scrollheight/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,6 @@ var intElemScrollHeight = element.scrollHeight;

*intElemScrollHeight*은 요소 `scrollHeight`의 픽셀 값을 저장하는 정수형 변수입니다.

## 예제

padding-top

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

padding-bottom

**Left** **Top** **Right** **Bottom** _margin-top_ _margin-bottom_ _border-top_ _border-bottom_

hochan222 marked this conversation as resolved.
Show resolved Hide resolved
## 문제와 해결책

### 요소를 끝까지 스크롤했는지 판별하기
Expand Down
2 changes: 1 addition & 1 deletion files/ko/web/api/web_audio_api/simple_synth/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ function playTone(freq) {

oscillator의 주파수는 {{domxref("Oscillator.frequency")}} {{domxref("AudioParam")}} 객체의 값을 설정함으로써 `freq` 파라미터에 명시된 값으로 설정됩니다. 그리고서, 마침내, oscillator는 상속된 {{domxref("AudioScheduledSourceNode.start()")}} 메서드를 호출하여 소리를 생성하도록 시작됩니다.

#### 음 재생하기
#### 음을 연주하다
hochan222 marked this conversation as resolved.
Show resolved Hide resolved

{{event("mousedown")}} 이나 {{domxref("mouseover")}} 이벤트가 건반에서 발생했을 때, 우리는 대응하는 음을 재생하기를 원합니다. `notePressed()` 함수는 이 이벤트들에 대한 이벤트 핸들러로 사용됩니다.

Expand Down
6 changes: 2 additions & 4 deletions files/ko/web/css/visual_formatting_model/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ CSS 선택기는 해당 상자에 이름을 부여하거나 스타일링을 할

상자를 포함하는 블록은 인라인수준 상자 또는 블록수준 상자만을 포함합니다. 그러나 문서는 두 가지 모두를 혼합해 포함합니다. 그 경우 무명 블록 상자는 인접 인라인수준 상자 주변에 생성됩니다.

### 예제
### 예제 1
hochan222 marked this conversation as resolved.
Show resolved Hide resolved

아래와 같은 ({{ HTMLElement("div") }}와 {{ HTMLElement("p") }}에 기본값 스타일링이 적용된 HTML 코드가 `display: block` 속성을 갖고 있다면:

Expand All @@ -71,7 +71,7 @@ CSS 선택기는 해당 상자에 이름을 부여하거나 스타일링을 할

중간에 인라인 콘텐츠가 없이 여러 블록 상자가 있는 경우 무명 블록 상자가 해당 상자 집합 이전과 이후에 생성됩니다.

### 예제
### 예제 2

아래 HTML 코드를 보면 {{ HTMLElement("p") }}는 `display: inline` 속성을 갖고 있고 {{ HTMLElement("span") }}는 `display:block` 속성을 갖고 있습니다:

Expand Down Expand Up @@ -186,8 +186,6 @@ CSS 선택기는 해당 상자에 이름을 부여하거나 스타일링을 할

_일반 대열_ 속 상자 무리는 하나씩 차례대로 배치됩니다. 블록 서식 상황 속에서 그들은 수직으로 배치됩니다. 반면에 인라인 서식 상황 속에서 그들은 수평으로 배치됩니다. 일반 대열은 CSS {{ cssxref("position") }}이 `static` 또는 `relative` 값으로 설정될 경우와 {{ cssxref("float") }}가 `none`으로 설정되면 발동됩니다.

### 예제

> **참고:** 일반 대열 속에서는 블록 서식 상황에 포함된 상자는 수직으로 하나씩 차례대로 배치됩니다.
>
> 일반 대열 속에서는 인라인 서식 상황에 포함된 상자는 수평으로 하나씩 차례대로 배치됩니다.
Expand Down
2 changes: 1 addition & 1 deletion files/ko/web/http/headers/etag/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ETag: W/"<etag_value>"
ETag: "<etag_value>"
```

## 참고
## 지시자

- `W/` {{optional_inline}}
- : `'W/'` (대/소문자를 구분합니다.) [weak validator](/ko/docs/Web/HTTP/Conditional_requests#Weak_validation) 가 사용되었음을 나타냅니다. Weak validators 는 만들기는 쉽지만 비교하기에는 효율성이 떨어집니다. Strong validators 는 비교하기에는 이상적이지만 효율적으로 만들기가 어렵습니다. 동일한 자원의 두 가지 Weak `Etag` 값은 동일할 수 있지만, 바이트 단위까지 동일하진 않습니다.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ slug: Web/JavaScript/Reference/Global_Objects/Math/LOG2E

`LOG2E`는 `Math`의 정적 속성이므로, 사용자가 생성한 `Math` 객체의 속성으로 접근할 수 없고 항상 `Math.LOG2E`를 사용해야 합니다. (`Math`는 생성자가 아닙니다)

## 설명
## 예제

### `Math.LOG2E` 사용하기

Expand Down