Skip to content

Radio

A Radio is a binary input that is usually combined in a group of two or more options. They signal a pattern where users can only select one of the available options. Radios are also known as “radio buttons”.

Guidelines

Using radios

Radios must feature a descriptive label. They must be part of a radio group of at least two elements. A radio may also have sub-components or child radio groups.

Use the Radio component to make a single selection from a list of options where only one choice is allowed. When multiple selections are needed, use Checkbox instead.

Example of a group with two Codex Radios.

Specifications

Specification of Radio.

  1. Radio
    Radio buttons make the selection visually distinct.
  2. Label
    The label text size should match the base font size to ensure consistency with the body text. It can also include links and bold text. Labels should be as short as possible, and include text that clearly states which selection is being made.

Refer to the Radio component in Codex Figma.

Interaction states

Radio buttons’ states were designed using accessible color variations. In addition to the 'disc' icon, these make it easier to differentiate between the radio button’s selected and unselected modes (e.g. disabled, hover, active):

States of the Radio component for both unselected and selected states: default, hover, active, focus, and disabled.

  1. Default unselected
  2. Hover unselected
  3. Active unselected
  4. Focus unselected
  5. Disabled unselected
  6. Default selected
  7. Hover selected
  8. Active selected
  9. Focus selected
  10. Disabled selected

Accessibility note

The disabled state does not meet our minimum color contrast rules. WCAG 2.1 states that “…part[s] of an inactive user interface component […] have no contrast requirement”.[1]
Provide sufficient information in a disabled element's context, so the user can understand what is disabled and how to enable it (if applicable).

Content

A radio button ensure that a reader chooses only one option from a set of two or more. Keeping choices simple and mutually exclusive makes for concise, effective and trustworthy content.

A screenshot of interface radio buttons conveying an example of a clear prompt and concise list of options.

Do:

A screenshot of interface radio buttons conveying an example of a list of options with unnecessarily long descriptions.

Don't:

References

  1. Web Content Accessibility Guidelines (WCAG) 2.1 – Success Criterion 1.4.3 Contrast (Minimum)

Demos

Open up the browser console to see events emitted on input.

Label and description

Always include label text via the default slot. You can also add description text via the #description slot.

This demo uses the Field component—usage of this component is described in the next section.

Search completion
Corrects up to two typos. Removes redirects that are very similar to the main title.
No typo correction. No accent folding. Strict matching.
NameValue
View
Reading direction

Form field

When used in a form, a group of Radios can be wrapped in the Field component to add features like a semantic label, description and help text, validation messages, and more. See the Field page for more information.

When building a Radio field, always set isFieldset to true to ensure proper accessibility support. This wraps the group in a <fieldset> element and labels it with an associated <legend>.

If using a Radio group outside of a form, follow the instructions in the next demo.

Notifications Choose how often you'd like to receive notifications
Note that you can update this preference later

Radio group

For a group of radios, each Radio component's v-model will be bound to the same ref, which is equal to the inputValue prop of the selected Radio. Use the same name prop for all of the Radio components in a group.

This demo shows what to do when using a Radio group outside of a form:

  1. Wrap the group in an element with role="radiogroup"
  2. Connect the group with a label via the aria-labelledby attribute

Radio group value: radio-2

Inline radios

Use the inline prop to get an inline layout.

Inline Radio group demo

With no initial selection

Radio group value:

Vue usage

Typical use of this component will involve using v-for to loop through an array of items and output a Radio component for each one. Each Radio will have the same v-model binding and name prop, but different inputValue props and label content.
The v-model value is the inputValue of the Radio that is currently on.

Props

Prop nameDescriptionTypeDefault
modelValueValue of the currently selected radio.

Provided by v-model binding in the parent component.
string|number|boolean''
inputValueHTML "value" attribute to assign to the input.

Required for input groups.
string|number|booleanfalse
name(required)HTML "name" attribute to assign to the input.string
disabledWhether the disabled attribute should be added to the input.booleanfalse
inlineWhether the component should display inline.

By default, display: block is set and a margin exists between sibling components, for a stacked layout.
booleanfalse

Events

Event namePropertiesDescription
update:modelValuemodelValue string|number|boolean - The new model valueEmitted when modelValue changes.

Slots

NameDescriptionBindings
defaultLabel text.
descriptionShort description text.

CSS-only version

Markup structure

The structure below can be used for most cases. If you need a description, see the section on that feature below.

With description

To add a description below the label:

  • Add a span after the <label> element with an ID and class cdx-label__description. Include the description text here.
  • Add class cdx-label__label to the <label> element
  • Wrap the label and description in a div with classes cdx-radio__label and cdx-label
  • Add an aria-describedby attribute to the <input> element with the value of the ID of the description
Search completion
Corrects up to two typos. Removes redirects that are very similar to the main title.
No typo correction. No accent folding. Strict matching.

Radio group

Native attributes of the <input> element can be used. For example:

  • Add the checked attribute to the <input> element if it should be selected initially.
  • Add the disabled attribute to the <input> element if it should be disabled.

Always include one of these two features for accessible grouping:

  1. If using the Radio group in a field, wrap the group in a <fieldset> element and add a <legend> element with the group label. This method is demonstrated below and requires some style resets on <fieldset> and <legend>. You can use the CSS-only Field and Label components to reset browser styles of these elements.
  2. If using the Radio group outside of a field, wrap the group in a <div> with role="group" and aria-labelledby set to the ID of the group label. See an example of this above (you can just include a <label> element instead of using the Label component).
CSS-only Radio group demo

Inline radios

Add the cdx-radio--inline class to the root element to get an inline layout.

CSS-only inline Radio demo