Component Blueprints

Radio Button Group

A styled select list that can have a single entry checked at any one time.

About Radio Button Group#

Default#

Radio Group Label
<fieldset class="slds-form-element">
  <legend class="slds-form-element__legend slds-form-element__label">Radio Group Label</legend>
  <div class="slds-form-element__control">
    <div class="slds-radio_button-group">

Mobile#

On mobile devices, such as phones and other devices that have touch as the primary method of interaction, radio button groups will have an increased size to accommodate tapping with a finger instead of the more precise mouse cursor, and also become stacked.

Below is a live example of what to expect in that context. No code changes are needed in the Salesforce platform context as this change occurs automatically in Salesforce native mobile applications. For those users not on the Salesforce platform, these modifications will occur automatically when the secondary touch stylesheet is loaded and the device has touch as the primary method of interaction.

States#

Disabled#

Radio Group Label
<fieldset class="slds-form-element">
  <legend class="slds-form-element__legend slds-form-element__label">Radio Group Label</legend>
  <div class="slds-form-element__control">
    <div class="slds-radio_button-group">

Required#

*Radio Group Label
<fieldset class="slds-form-element">
  <legend class="slds-form-element__legend slds-form-element__label">
    <abbr class="slds-required" title="required">*</abbr>Radio Group Label</legend>
  <div class="slds-form-element__control">

Has Error#

*Radio Group Label
This field is required
<fieldset class="slds-form-element slds-has-error">
  <legend class="slds-form-element__legend slds-form-element__label">
    <abbr class="slds-required" title="required">*</abbr>Radio Group Label</legend>
  <div class="slds-form-element__control">

Overview of CSS Classes#

Selector.slds-radio_button-group
Summary

Initializes radio button

Supportdev-ready
Restrictdiv
VariantTrue
Selector.slds-radio_button
Summary
Restrict.slds-radio_button-group span
Selector.slds-radio_faux
Summary

Create styled button when adjacent to the input[radio] element

Restrict.slds-radio_button span
Selector.slds-radio_button__label
Summary

Label element inside of a radio button

Restrict.slds-radio_button label

Radio Button Group Release Notes

2.13.1

Fixed

  • Fixed issue where mobile text size wasn't accurately sized.

2.13.0

Changed

  • Added aria-describedby="error_01" to the inputs to improve accessibility in the error state.

2.11.7

Added

  • Added documentation and examples for mobile/touch context

2.11.0

Changed

  • For mobile devices, radio button groups stack vertically to account for the limited horizontal space of mobile screens.