Component Blueprints
Select
- HTML/CSS:Dev Ready
- Layout:Responsive
Sections
Select element presents a menu of options. For selecting multiple options, see Dueling Picklist.
About Select#
The HTML <select>
element presents a menu of options. The options within the menu are represented by <option>
elements that you can group with <optgroup>
elements. You can pre-select options for the user.
For selecting multiple options, we have created a custom component called the Dueling Picklist to ensure Accessibility and ease-of-use. Please refer to that documentation for the interaction model, markup, and Accessibility requirements.
Base#
<div class="slds-form-element">
<label class="slds-form-element__label" for="select-01">Select Label</label>
<div class="slds-form-element__control">
<div class="slds-select_container">
States#
Error#
Select an option.
<div class="slds-form-element slds-has-error">
<label class="slds-form-element__label" for="select-01">
<abbr class="slds-required" title="required">* </abbr>Select Label</label>
<div class="slds-form-element__control">
Disabled#
<div class="slds-form-element">
<label class="slds-form-element__label" for="select-01">Select Label</label>
<div class="slds-form-element__control">
<div class="slds-select_container">
Examples#
Required#
<div class="slds-form-element">
<label class="slds-form-element__label" for="select-01">
<abbr class="slds-required" title="required">* </abbr>Select Label</label>
<div class="slds-form-element__control">
Multiple Selection#
Select Options
Press space bar when on an item, to move it within the list. Cmd/Ctrl plus left and right arrow keys, to move items between lists.
First Category
- Option 1
- Option 2
- Option 3
- Option 6
Second Category
- Option 4
- Option 5
<div class="slds-form-element" role="group" aria-labelledby="picklist-group-label">
<span id="picklist-group-label" class="slds-form-element__label slds-form-element__legend">Select Options</span>
<div class="slds-form-element__control">
<div class="slds-dueling-list">
Multiple Selection Narrow#
<div class="slds-form-element">
<label class="slds-form-element__label" for="select-01">Select Label</label>
<div class="slds-form-element__control">
<select class="slds-select" id="select-01" multiple="">
Styling Hooks Overview#
Use these CSS Custom Properties as hooks to customize this SLDS component with your own style. For more information, read the technical documentation.
Category | Styling Hook Name | Value Type(s) | Fallback Value |
---|---|---|---|
Box Shadow | --slds-c-select-shadow | String | |
--slds-c-select-shadow-focus | String | 0 0 3px #0176d3 | |
Color | --slds-c-select-color-background | Color | 100, white |
--slds-c-select-color-background-focus | Color | 100, white | |
--slds-c-select-color-border | Color | 4, #c9c9c9 | |
--slds-c-select-color-border-focus | Color | 60, #1b96ff | |
--slds-c-select-text-color | Color | ||
--slds-c-select-text-color-focus | Color | ||
Radius | --slds-c-select-radius-border | Dimension | 0.25rem |
Overview of CSS Classes#
- Selector
- The CSS class being referred to.
- Summary
- A description of what the class does.
- Support
- Whether the class name is dev-ready (meaning it's fully vetted and tested and safe to use) or prototype (which means it's not fully vetted yet).
- Restrict
- The selector that the class name is allowed to be used on.
- Variant
- The base level pattern for a component. A variant can be extended to create another variant of that component, for example, a stateful button is a derivative of the base button.
- Modifier
- A single class that can be added to an HTML element of a component to modify its output. Typically these will be colors, sizing and positioning.
Selector | .slds-select |
---|---|
Summary | Initializes select |
Support | dev-ready |
Restrict | select |
Variant | True |
Select Release Notes
2.17.0
Added
- Added
slds
as the default namespace withsds
fallbacks for Styling Hooks.
2.14.0
Added
- Enabled styling hooks for select. See select's styling hooks overview table for a full listing of the currently available hooks.
2.13.1
Fixed
- Small improvements to the UI text.
2.8.4
Fixed
- Adjusted pseudo elements to allow click events to pass through