aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/-moz-binding/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/-moz-binding/index.html')
-rw-r--r--files/de/web/css/-moz-binding/index.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/files/de/web/css/-moz-binding/index.html b/files/de/web/css/-moz-binding/index.html
new file mode 100644
index 0000000000..c59286c421
--- /dev/null
+++ b/files/de/web/css/-moz-binding/index.html
@@ -0,0 +1,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>