From 3053faa3c9b316f84e1f6ffd93bcaa79f77aa947 Mon Sep 17 00:00:00 2001 From: jgjgill <79239852+jgjgill@users.noreply.github.com> Date: Wed, 19 Jul 2023 08:56:03 +0900 Subject: [PATCH] [ko] update api/stylesheet (#14018) --- files/ko/web/api/stylesheet/index.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/files/ko/web/api/stylesheet/index.md b/files/ko/web/api/stylesheet/index.md index ccb609551fa34d..2ea2f022b2d238 100644 --- a/files/ko/web/api/stylesheet/index.md +++ b/files/ko/web/api/stylesheet/index.md @@ -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. + - : 이 스타일 시트의 스타일 시트 언어를 나타내는 문자열을 반환합니다. ## 명세서 @@ -32,6 +34,6 @@ An object implementing the `StyleSheet` interface represents a single style shee {{Compat}} -## See also +## 같이 보기 - {{domxref("CSSStyleSheet")}}