aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/-moz-binding/index.html
blob: d79650ead60c7978e46e2cdf6eeee945f5994d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: '-moz-binding'
slug: Web/CSS/-moz-binding
tags:
  - CSS
  - CSS プロパティ
  - 'CSS:Mozilla 拡張'
  - Mozilla 拡張
  - Reference
  - XBL
  - XUL
  - リファレンス
  - 標準外
  - 非推奨
translation_of: Archive/Web/CSS/-moz-binding
---
<div>{{CSSRef}}{{Non-standard_Header}}{{Deprecated_Header(57)}}</div>

<p>CSS の <strong><code>-moz-binding</code></strong> プロパティは、 Mozilla ベースのアプリケーションで <a href="/ja/docs/XBL">XBL</a> を DOM 要素に結び付けるために使用します。</p>

<p>{{cssinfo}}</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="brush:css">/* &lt;url&gt; 値 */
-moz-binding: url(http://www.example.org/xbl/htmlBindings.xml#checkbox);

/* グローバル値 */
-moz-binding: inherited;
-moz-binding: initial;
-moz-binding: unset;
</pre>

<h3 id="Values" name="Values"></h3>

<dl>
 <dt>{{cssxref("&lt;url&gt;")}}</dt>
 <dd>(フラグメント識別子を含む) XBL バインドのための URI</dd>
 <dt><code>none</code></dt>
 <dd>要素に XBL バインドを適用しない事を示すキーワード</dd>
</dl>

<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>

<pre class="syntaxbox">{{csssyntax}}</pre>

<h2 id="Examples" name="Examples"></h2>

<pre class="brush: css">.exampleone {
  -moz-binding: url(http://www.example.org/xbl/htmlBindings.xml#radiobutton);
}</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<p>どの仕様書でも定義されていません。</p>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>

<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>

<p>{{Compat("css.properties.-moz-binding")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/XBL/XBL_1.0_Reference/Binding_Attachment_and_Detachment">XBL Reference: Binding Attachment and Detachment</a></li>
 <li><a href="/ja/docs/XUL_Tutorial/Introduction_to_XBL">XUL Tutorial: Introduction to XBL</a></li>
</ul>