--- title: stylesheet slug: Web/XSLT/stylesheet tags: - XSLT_Reference translation_of: Web/XSLT/Element/stylesheet ---
{{ XsltRef() }}
<xsl:stylesheet>
(나 동등한 <xsl:transform>
) 요소는 스타일시트의 최외곽 요소입니다.
pseudo 속성은 XSLT 스타일시트로 문서를 식별하기 위해 필요합니다. 대체로 이는 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
입니다.
<xsl:stylesheet version=NUMBER xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id=NAME extension-element-prefixes=LIST-OF-NAMES exclude-result-prefixes=LIST-OF-NAMES> ENTIRE STYLESHEET </xsl:stylesheet>
version
id
(7.0 현재 오직 inline DTD가 명시하여 호출하는 경우만 지원함.)id
를 지정합니다. 이는 스타일시트를 다른 XML 문서에 포함할 때 가장 자주 씁니다.필수 최외곽 스타일시트 요소.
XSLT section 2.2, Stylesheet Element
조금 지원. 위 해설을 보세요.