Label
A Label provides a descriptive title for a form input. Having labels is essential when filling out a form, since each field is associated with its label.
Guidelines
When to use labels
The Label component will be placed above each form Field. An optional indicator, a tooltip, and a description could also be included next to the label text.
Specifications
Label is used within Field. It can also be used on its own for cases when the Field component cannot or should not be used (e.g. to label a SearchInput). The Label may include the following elements:
- Icon (optional)
A start icon can be included to visually enhance the label's context. This icon is fully customizable and any icon from the provided list can be used. Use a simple icon that is easily comprehensible to users. - Label text
A clear and descriptive title for the form field that tells the user what information to enter. - Field indicator (optional)
Subtle text indicating that the field associated with the label is not required. - Description (optional)
Subtle descriptive text that provides additional information about the field.
Component limitations
Label and description can wrap onto multiple lines as needed, without strict length limits. However, it's best to keep them concise for better form readability. If the label spans multiple lines, the optional indicator will appear next to the last line of the label.
Label style
The Label will be bold by default. However, it can be customized to regular weight when needed in specific cases:
- Bold labels should be used when grouping two or more form fields under a title with a larger text size.
- Regular labels should be used when grouped under a title with the same text size as the form field label. This prevents hierarchy issues and ensures consistency.
Refer to the Label component in Codex Figma.
Interaction states
Label includes only two states:
- Default
- Disabled
Best practices
Consider the following recommendations when using labels within form fields. For more detailed information about form fields, consult the guidelines for constructing forms.
Usage
- Use the label as a title for any Field within a form.
- Use the label component as a title for non-form items such as toggle buttons.
- Use labels as standalone elements on a page.
Icon
- Use a start icon next to the label to emphasize the required input in the form field.
- Use another icon in the label's section if the field already contains an icon.
Label and description
- Keep the Field’s label short, clear, and easy to scan.
- Utilize the label’s description for additional information if needed.
- Make the Field’s label text excessively large, which could make it difficult to scan.
Optional fields
- Only indicate the optional Fields in the form.
- Ensure that the entire word "optional" is displayed for translation purposes.
- Mark required labels with an asterisk.
- Use abbreviations in the optional indicator.
Label style
- Customize the label of Fields to regular weight when grouped within a fieldset.
- Avoid using bold labels in the Fields within a fieldset to maintain hierarchy and clarity.
Keyboard navigation
Key | Function |
---|---|
Enter | If the focus is placed on one of the interactive elements within the Label, it activates them. |
Demos
TIP
You should consider using the Field component, which includes the Label component and handles accessibility features like ARIA attributes internally. If you need more custom behavior, you can use the Label component on its own.
Configurable
Name | Value |
---|---|
Props | |
icon | |
optional | |
visuallyHidden | |
isLegend | |
disabled | |
Slots | |
default | |
description | |
View | |
Reading direction | |
Note: For icon properties, the relevant icon also needs to be imported from the @wikimedia/codex-icons package. See the usage documentation for more information. |
Basic usage
When using the Label component with an input, make sure to add an id
attribute to the input and use that to set the for
attribute on the label. These attributes will be applied on the proper element within each component (in the example below, that's the <label>
for the Label component, and the <input>
for the TextInput).
Visually-hidden label
In rare instances, you may not need a visible label if it's very clear from context how to use an input. To achieve this, you can use the Label component to create a semantic label for assistive technology, but add the visuallyHidden
prop to visually hide the label.
Note that this will hide the entire output of the component, including the description.
With rich description text
You can include markup in the description
slot. Only links and text formatting are recommended as description text should be concise.
Label vs. legend
This component outputs a <label>
element by default. When the isLegend
prop is set to true
, it will instead output a <legend>
element. Use this within a <fieldset>
element.
There is a named slot in the Label component, description
, for including more information about the field. It's important to note that, when isLegend
is true, the description will be rendered inside the <legend>
element to ensure it will be read by assistive technology.
Below are examples of a label and a legend with an associated description.
Vue usage
Props
Prop name | Description | Type | Default |
---|---|---|---|
icon | Icon before the label text. Do not use this if including a start icon within the input component. | Icon|null | null |
optional | Whether the field is optional. This will add a flag next to the label indicating that the field is optional. | boolean | false |
optionalFlag | Text to indicate that the field is optional. Omit this prop to use the default value, "(optional)". | string | '' |
visuallyHidden | Whether the label should be visually hidden. | boolean | false |
isLegend | Whether this component should output a <legend> element.Always set this to true when this component is used inside a <fieldset> element. Do not set it to true otherwise. | boolean | false |
inputId | The ID of the input/control this label is for. Will be added as the for attribute of the <label> . Not needed for <legend> . | string | '' |
descriptionId | The ID of the description element. This ID can be used for the aria-describedby attribute of the input. | string | '' |
disabled | Whether this label is for a disabled field or input. | boolean | false |
Slots
Name | Description | Bindings |
---|---|---|
default | Label text. | |
description | Short description text. |
CSS-only version
Markup structure
Examples are shown with inputs to demonstrate the ARIA attributes required to connect the label and input.
Label
Use a <label>
element for a single input.
Legend
Inside a <form>
, use a <legend>
element within a <fieldset>
for input groups.
When outputting a <legend>
rather than a <label>
, the markup of this component is quite different:
- There is no wrapper
<div>
—<legend>
must be a direct child of<fieldset>
- The description is included inside the
<legend>
- The
for
andaria-describedby
attributes are not needed
With icon
To add an icon to the label:
- Add an empty
<span>
before the label text with the classes.cdx-label__label__icon
and a custom class that you can target to add the CSS-only icon - Apply the CSS-only icon mixin to that
<span>
This works for <label>
and <legend>
.
Visually hidden
Occasionally, there may be a use case for the label to be visually hidden. In these cases, it should still be present in the DOM with appropriate elements and ARIA attributes.
To visually hide the label, add the .cdx-label--visually-hidden
class to the outer element. This works for <label>
and <legend>
.
Disabled
Add the .cdx-label--disabled
class to the outer element to get disabled styles. This works for <label>
and <legend>
.