Skip to content

Commit

Permalink
[ko] update api/stylesheet (#14018)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgjgill authored Jul 18, 2023
1 parent 8913bb9 commit 3053faa
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions files/ko/web/api/stylesheet/index.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
---
title: StyleSheet
slug: Web/API/StyleSheet
l10n:
sourceCommit: 6d194a9afcce7beef0082c1dc50644bd0fcda635
---

{{APIRef("CSSOM")}}

An object implementing the `StyleSheet` interface represents a single style sheet. CSS style sheets will further implement the more specialized {{domxref("CSSStyleSheet")}} interface.
`StyleSheet` 인터페이스를 구현하는 객체는 단일 스타일 시트를 나타냅니다. CSS 스타일 시트는 보다 특수화된 {{domxref("CSSStyleSheet")}} 인터페이스를 추가로 구현합니다.

## Properties
## 인스턴스 속성

- {{domxref("StyleSheet.disabled")}}
- : Is a {{domxref("Boolean")}} representing whether the current stylesheet has been applied or not.
- : 현재 스타일시트가 적용되었는지 여부를 나타내는 불리언 값입니다.
- {{domxref("StyleSheet.href")}} {{readonlyInline}}
- : Returns a {{domxref("DOMString")}} representing the location of the stylesheet.
- : 스타일시트의 위치를 나타내는 문자열을 반환합니다.
- {{domxref("StyleSheet.media")}} {{readonlyInline}}
- : Returns a {{domxref("MediaList")}} representing the intended destination medium for style information.
- : 스타일 정보에 대해 원하는 대상 매체를 나타내는 {{domxref("MediaList")}}를 반환합니다.
- {{domxref("StyleSheet.ownerNode")}} {{readonlyInline}}
- : Returns a {{domxref("Node")}} associating this style sheet with the current document.
- : 현재 문서와 이 스타일 시트를 연결하는 {{domxref("Node")}}를 반환합니다.
- {{domxref("StyleSheet.parentStyleSheet")}} {{readonlyInline}}
- : Returns a {{domxref("StyleSheet")}} including this one, if any; returns `null` if there aren't any.
- : 이 시트를 포함하는 {{domxref("StyleSheet")}}를 반환합니다. 없으면 `null`을 반환합니다.
- {{domxref("StyleSheet.title")}} {{readonlyInline}}
- : Returns a {{domxref("DOMString")}} representing the advisory title of the current style sheet.
- : 현재 스타일 시트의 추가적인 제목을 나타내는 문자열을 반환합니다.
- {{domxref("StyleSheet.type")}}{{readonlyInline}}
- : Returns a {{domxref("DOMString")}} representing the style sheet language for this style sheet.
- : 이 스타일 시트의 스타일 시트 언어를 나타내는 문자열을 반환합니다.

## 명세서

Expand All @@ -32,6 +34,6 @@ An object implementing the `StyleSheet` interface represents a single style shee

{{Compat}}

## See also
## 같이 보기

- {{domxref("CSSStyleSheet")}}

0 comments on commit 3053faa

Please sign in to comment.