aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/-moz-binding/index.html
blob: c59286c4211db579beb3916997f03727861f5ed1 (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
---
title: '-moz-binding'
slug: Web/CSS/-moz-binding
tags:
  - CSS
  - CSS Referenz
  - NeedsBrowserCompatibility
  - NeedsMobileBrowserCompatibility
  - NeedsUpdate
  - Non-standard
  - XBL
translation_of: Archive/Web/CSS/-moz-binding
---
<div>{{Non-standard_header}}{{CSSRef}}{{Deprecated_Header(57)}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Die <code>-moz-binding</code> CSS Eigenschaft wird bei Mozilla basierten Anwendungen dazu verwendet, <a href="/de/docs/XBL">XBL</a> Bindings an ein DOM Element anzufügen.</p>

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

<h2 id="Syntax">Syntax</h2>

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

/* Globale Werte */
-moz-binding: inherited;
-moz-binding: initial;
-moz-binding: unset;
</pre>

<h3 id="Werte">Werte</h3>

<dl>
 <dt>&lt;uri&gt;</dt>
 <dd>Die URI für ein XBL Binding (inclusive dem Fragmentidentifizier).</dd>
 <dt><code>none</code></dt>
 <dd>Kein XBL Binding wird auf das Element angewandt.</dd>
</dl>

<h3 id="Formale_Syntax">Formale Syntax</h3>

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

<h2 id="Beispiel">Beispiel</h2>

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

<h2 id="Spezifikationen">Spezifikationen</h2>

<p>Nicht Teil einer Spezifikation.</p>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

{{Compat("css.properties.-moz-binding")}}

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li><a href="/de/docs/XBL/XBL_1.0_Referenz/Anfügen_und_Lösen_von_Bindings">XBL Referenz: Anfügen und Lösen von Bindings</a></li>
 <li><a href="/de/docs/Mozilla/Tech/XUL/Tutorial/Einführung_in_XBL">XUL Tutorial: Einführung in XBL</a></li>
</ul>