CSS:-moz-binding
From MDC
« CSS Reference « CSS Reference:Mozilla Extensions
[edit] Summary
-moz-binding is used by Mozilla-based applications to attach an XBL binding to a DOM element.
- Initial value:
none| [<uri>,]*<uri>|inherit - Applies to: all elements (not generated content or pseudo-elements)
- Inherited: no
- Percentages: N/A
- Media:
visual - Computed value: as specified
[edit] Syntax
-moz-binding: uri | none
[edit] Values
- uri
- The URI for the XBL binding (including the fragment identifier).
- none
- no XBL binding is applied to the element
[edit] Examples
.exampleone {
-moz-binding: url("http://www.mozilla.org/xbl/htmlBindings.xml#checkbox");
}