Skip to main content
Select typePurpose
DefaultTypically used in forms with a variety of other components.
Small selectWhen vertical space is a concern, or Select is being paired with larger component, such as Cards or Data Tables.
Inline selectWhen multiple selects are grouped together.

Small select

Small selects are commonly used in data tables. When using a small select for a number selection, the increments in the select should be 10, 25, 50 and 100. The maximum amount of items a user can see per page is 100.

Inline select

Inline select is useful when you have multiple select fields within a form. Inline selects have less visual weight on a page because they are borderless.

General guidelines

Labels

Labels are essential to the usability of forms. Do not place a label inside a select element. Use sentence case and no more than three words.

Validation

Real-time validation helps to streamline the process and keep data clean when the user is filling out forms. For full guidelines, refer to the forms usage page.

Order

The order of the select list should be based on the frequency of use. If applicable, the list should be in increasing order relative to the content. In cases of forms, alternative orders such as alphabetical may be more fitting. A horizontal rule can be used to group similar items together.

Accessibility

Styling select dropdowns

To maximize accessibility, it is strongly recommended not to style _select_ dropdowns. One of the WCAG 2.0 standards for accessibility is “ensuring keyboard control for all functionality.” CSS alternatives to `select` elements do not meet this requirement.

While you can make a select element easily usable by a mouse, making it usable with keyboard navigation is complex. The default select element should follow this process:

MouseKeyboard
:hovermove your cursor over the select elementuse the tab key to focus the select element
:focusclick on the select elementpress enter
:move your cursor over the desired optionuse the top and bottom arrow keys to pick an option
:selectclick on the desired optionpress enter