CSS GUIDE -MOZ-USER-INPUT

From CDOT Wiki
Revision as of 23:53, 13 December 2006 by Dwwoodsi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Summary

-moz-user-input is a Mozilla property extension to CSS that is used to determine whether or not an element may be selected with input focus.

Media: interactive

Possible uses include: .

Syntax

TARGET_ELEMENT{-moz-user-input: inherit;}
TARGET_ELEMENT{-moz-user-input: disabled;}
TARGET_ELEMENT{-moz-user-input: enabled;}
TARGET_ELEMENT{-moz-user-input: none;}

Legal Values

ValueDescription
inheritInherit the value from the parent element.
disabledThe element will not accept user input.
enabledThe element accepts user input.
noneThe element does not respond to user input, and as such, neither disabled nor enabled are applicable.

Usage Examples

Notes

This property is similar to the user-input property of CSS3.

Specification Conformance

Doesn't conform to CSS standards; A Mozilla CSS Extension.

Browser Compatibility

Netscape 6+
Mozilla 0.6+
Firefox 1.0+

See Also

-moz-user-focus
-moz-user-input
-moz-user-modify

References

Mozilla Developer Centre - CSS Reference - Mozilla Extensions, particularly: [1] (developer.mozilla.org)
Netscape CSS Extensions (blooberry.com)
User Interface for CSS3 (w3.org)