diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/xslt/element/attribute-set | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/xslt/element/attribute-set')
-rw-r--r-- | files/ja/web/xslt/element/attribute-set/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/xslt/element/attribute-set/index.html b/files/ja/web/xslt/element/attribute-set/index.html new file mode 100644 index 0000000000..873418aed1 --- /dev/null +++ b/files/ja/web/xslt/element/attribute-set/index.html @@ -0,0 +1,45 @@ +--- +title: '<xsl:attribute-set>' +slug: Web/XSLT/Element/attribute-set +tags: + - XSLT + - attribute-set + - リファレンス + - 要素 +translation_of: Web/XSLT/Element/attribute-set +--- +<p>{{ XsltRef() }}</p> + +<p><code><xsl:attribute-set></code> 要素は名前付き属性のセットを作成します。属性のセットは、CSSの名前付きスタイルに類似した方法で出力ドキュメント全体に適用されます。</p> + +<h3 id="Syntax" name="Syntax">構文</h3> + +<pre><xsl:attribute-set name=NAME use-attribute-sets=LIST-OF-NAMES> + <xsl:attribute> +</xsl:attribute-set></pre> + +<h3 id="Required_Attributes" name="Required_Attributes">必須属性</h3> + +<dl> + <dt><code>name</code></dt> + <dd>属性セットの名前を指定します。名前は有効な QName でなければなりません。</dd> +</dl> + +<h3 id="Optional_Attributes" name="Optional_Attributes">任意属性</h3> + +<dl> + <dt><code>use-attribute-sets</code></dt> + <dd>他の属性セットから属性セットを構築します。寄与する集合の名前は、空白文字で区切られなければならず、直接的または間接的に埋め込まれてはいけません。</dd> +</dl> + +<h3 id="Type" name="Type">タイプ</h3> + +<p>最上位は <code><xsl:stylesheet></code> または <code><xsl:transform></code> の子である必要があります。</p> + +<h3 id="Defined" name="Defined">定義</h3> + +<p>XSLT, section 7.1.4.</p> + +<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート</h3> + +<p>サポート済み</p> |