overview

01
tema preferido

variantes

02

Variante única.

estados

03

modifiers · api

04
proptipodefaultdescrição
type="radio"attrrequired
nameattragrupa radios mutuamente exclusivos
checkedattrestado inicial
disabledattrdesabilita

quando usar

05

use

  • 2-7 opções mutuamente exclusivas
  • Decisão importante onde todas as opções são visíveis

não use

  • Só 1 opção possível — não usa
  • 8+ opções — usa dropdown
  • Múltipla seleção — usa checkbox

acessibilidade

06 · wcag aa

código

07 · html
<fieldset> <legend>tema</legend> <label class="radio-row"> <input type="radio" name="theme" value="light"> light </label> <label class="radio-row"> <input type="radio" name="theme" value="dark"> dark </label> </fieldset>