blob: 136ccb9b332a128da009ed473f84c354e532af10 (
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
|
---
title: '-moz-binding'
slug: Web/CSS/-moz-binding
translation_of: Archive/Web/CSS/-moz-binding
---
<div>{{CSSRef}}{{Non-standard_Header}}{{Deprecated_Header(57)}}</div>
<p>A propriedade CSS <strong><code>-moz-binding</code></strong> é usada por aplicações baseadas em Mozilla para fixar um <a href="/en-US/docs/XBL">XBL</a> binding a um elemento DOM.</p>
<p>{{CSSInfo}}</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="brush:css">/* valor da <url> */
-moz-binding: url(http://www.example.org/xbl/htmlBindings.xml#checkbox);
/* Valores globais */
-moz-binding: inherited;
-moz-binding: initial;
-moz-binding: unset;
</pre>
<h3 id="Valores">Valores</h3>
<dl>
<dt>{{CSSxRef("<url>")}}</dt>
<dd>A URL para o XBL binding (incluindo o identificador de fragmento).</dd>
<dt><code>none</code></dt>
<dd>Nenhum XBL binding é aplicado ao elemento.</dd>
</dl>
<h3 id="Sintaxe_formal">Sintaxe formal</h3>
<pre class="syntaxbox">{{CSSSyntax}}</pre>
<h2 id="Exemplo">Exemplo</h2>
<pre class="brush: css">.exampleone {
-moz-binding: url(http://www.example.org/xbl/htmlBindings.xml#radiobutton);
}</pre>
<h2 id="Especificações">Especificações</h2>
<p>Não faz parte de nenhuma especificação.</p>
<h2 id="Compatibilidade_do_navegador">Compatibilidade do navegador</h2>
<div class="hidden">A tabela de compatibilidade desta página é gerada a partir de dados estruturados. Se você gostaria de contribuir com os dados, por favor acesse <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e nos envie um pull request.</div>
<p>{{Compat("css.properties.-moz-binding")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li><a href="/en-US/docs/XBL/XBL_1.0_Reference/Binding_Attachment_and_Detachment">Referências XBL: Binding Attachment and Detachment</a></li>
<li><a href="/en-US/docs/Mozilla/Tech/XUL/Tutorial/Introduction_to_XBL">Tutorial XUL: Introdução ao XBL</a></li>
</ul>
|