Buttons
Buttons are interactive elements that trigger actions.
On this page:
Best Practices
Layout
- Always place the primary action’s button on the left, followed by other buttons.
- It’s best not to show disabled buttons.
- If disabled buttons must be shown, be sure to add the
disabled
attribute. - Use only one primary button when possible.
- Multiple gray outline buttons may be used.
- If an action moves the user to another place in the same page, or another URL, use a link
<a>
and not<button>
. - If a button is inside of a table row, add the
btn-sm
class in addition to other classes. - For accessibility reasons, when using
<a>
as a<button>
you must includerole="button"
. - Button labels must clearly state the action that occurs when the button is pressed.
- When writing buttons, use action verbs and precise language; you can also use a noun after the verb to clarify meaning.
- Examples: “Edit”, “Empty Trash”, or “Go to File”.
- When including an icon with text, the icon’s meaning must match the meaning of the text.
- Examples: A trash can icon with the text “Delete”.
- When using an icon-only button, the icon must clearly indicate the button’s purpose.
- For accessibility reasons, when using
<a>
to perform a data action, you must include therole="button"
attribute on the<a>
. - If you are using an icon-only button, you must include the appropriate classes for assistive technologies (see markup below).
- Try to avoid icon-only button unless the action word is known to voice control users.
Usage
See Status Colors and UI Colors for further color guidance.
Provided Buttons
See the Pen Buttons by LA Gov Design Team (@lagovdesignteam) on CodePen.
Icon-only Button
- Add text available to assistive technology.
- Use sparingly and only when their meaning is clear to the user.
- Consider omitting icon-only buttons as VoiceControl users may not be able to invoke them.
See the Pen Buttons by LA Gov Design Team (@lagovdesignteam) on CodePen.
Dropdown Buttons
- Contains a list of links, using the
<a>
element. - It’s not the same thing as the Select Menu used in Forms.
- Keep the text in the links brief.
- Appearance can be changed like other buttons.
See the Pen Buttons icon only by LA Gov Design Team (@lagovdesignteam) on CodePen.
Disabled Buttons
- Disabled buttons cannot be clicked and should not appear clickable.
- Do not use Disabled buttons as a placeholder if a feature isn’t ready yet.
- Disabled states can be used for a temporary state change triggered by the user’s actions. Once the action is resolved, the button should return to an enabled state.
- Use the
disabled
attribute to create a disabled button. - Add the class
disabled
to the class list. - Be sure to use
tabindex="-1"
to prevent tabbing to that button.
See the Pen Buttons by LA Gov Design Team (@lagovdesignteam) on CodePen.