XUL:label
From MDC
« XUL Reference home [ Examples | Attributes | Properties | Methods | Related ]
This element is used to provide a label for a control element. If the user clicks the label, it will move the focus to the associated control, specified with the control attribute.
More information is available in the XUL tutorial.
[edit] Examples
<label value="Email address" control="email"/> <textbox id="email"/>
[edit] Attributes
|
Inherited from XUL element |
- accesskey
- Type: character
- This should be set to a letter that is used as a shortcut key. This letter should be one of the characters that appears in the
labeltext for the element.
- control
- Type: element id
- This attribute specifies the id of the element with which the label is associated. When the user clicks on the label, the associated element is given focus.
- crop
- Type: one of the values below
- If the label of the element is too big to fit in its given space, the text will be cropped on the side specified by the
cropattribute. An ellipsis will be used in place of the cropped text. If the box direction is reversed, the cropping is reversed.
-
start: The text will be cropped on its left side. -
end: The text will be cropped on its right side. -
left: Deprecated The text will be cropped on its left side. -
right: Deprecated The text will be cropped on its right side. -
center: The text will be cropped in the middle, showing both the start and end of the text normally. -
none: The text will be not be cropped using an ellipsis. However, the text will simply be cut off if it is too large. The side depends on the CSS text alignment.
- disabled
- Type: boolean
- Indicates whether the element is disabled or not. If this element is set to
truethe element is disabled. Disabled elements are usually drawn with grayed-out text. If the element is disabled, it does not respond to user actions, it cannot be focused, and thecommandevent will not fire.
- href
- Type: string
- Defines a URL to open when this element is clicked. Requires the class attribute to include text-link.
- value
- Type: string
- The text to be used for the label.
[edit] Properties
|
Inherited from XUL element Inherited from DOM element |
- accessibleType
- Type: integer
- A value indicating the type of accessibility object for the element.
[edit] Methods
|
Inherited from XUL element Inherited from DOM element |
[edit] Style classes
The following classes may be used to style the element. These classes should be used instead of changing the style of the element directly since they will fit more naturally with the user's selected theme.
- header
- A class used for headings. Typically, this will cause the text to appear bold.
- indent
- This class causes the text to be indented on its left side.
- monospace
- This class causes the text to be displayed in a monospace font.
- plain
- This class causes the element to be displayed with no border or margin.
- small-margin
- This class causes the text to be displayed with a smaller margin.
- text-link
- Labels with this class may be focused and the click handler run or the address in the href attribute opened on a mouse click or Enter key press. Labels will appear like a link (blue and underlined).
[edit] Related
- Elements
- description
- Attributes
- label
- Interfaces
- nsIAccessibleProvider, nsIDOMXULLabelElement
[edit] User notes
Remember that the label element has a "value" attribute, unlike value in HTML whereas buttons, checkboxes use label="foo" as the attribute
<label label="A Caption"/> <-- wrong --> <label value="A Caption"/> <label value="Click the button"/> <button label="A Button"/> <checkbox label="A Decision" value="1"/>
