<전체 XSLT 요소 참조
정의 및 사용
<xsl:attribute-set> 요소는 속성 명명 된 집합을 만듭니다. 그만큼 특성 세트는 출력 문서에 전체적으로 적용 할 수있다.
Note: 의 자녀이어야합니다 <xsl:stylesheet> 또는 <xsl:transform> .
통사론
<xsl:attribute-set
name="name" use-attribute-sets="name-list">
<!-- Content:xsl:attribute* -->
</xsl:attribute-set>
속성
속성 | 값 | 기술 |
---|---|---|
name | name | 필요합니다. 속성 세트의 이름을 지정합니다 |
use-attribute-sets | name-list | 선택 과목. 다른 속성 - 세트의 공백 분리 목록이 속성 세트에 사용 |
예 1
모든 출력 소자에 적용될 수있는 속성 집합을 작성
<xsl:attribute-set name="font">
<xsl:attribute name="fname">Arial</xsl:attribute>
<xsl:attribute name="size">14px</xsl:attribute>
<xsl:attribute name="color">red</xsl:attribute>
</xsl:attribute-set>
<전체 XSLT 요소 참조