--- title: DocumentOrShadowRoot.styleSheets slug: Web/API/Document/styleSheets tags: - API - Document - Propert - Reference translation_of: Web/API/DocumentOrShadowRoot/styleSheets original_slug: Web/API/DocumentOrShadowRoot/styleSheets ---
{{SeeCompatTable}}{{APIRef("Shadow DOM")}}

{{domxref("DocumentOrShadowRoot")}} 인터페이스의 styleSheets 읽기 전용 속성은 문서에서 명시적으로 링크했거나, 안에 포함된 스타일시트에 대한 {{domxref('CSSStyleSheet')}} 객체의 {{domxref('StyleSheetList')}}를 반환합니다.

예제

function getStyleSheet(unique_title) {
  for(var i=0; i<document.styleSheets.length; i++) {
    var sheet = document.styleSheets[i];
    if(sheet.title == unique_title) {
      return sheet;
    }
  }
}

참고

반환 된 목록은 다음과 같이 정렬됩니다:

명세

Specification Status Comment
{{SpecName('Shadow DOM','#extensions-to-the-documentorshadowroot-mixin','DocumentOrShadowRoot')}} {{Spec2('Shadow DOM')}} Initial definition.

브라우저 호환성

{{Compat("api.DocumentOrShadowRoot.styleSheets")}}