Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 457 Bytes

radio.md

File metadata and controls

27 lines (20 loc) · 457 Bytes

Radio

Select one of a set of options.

Basic

<radio>Radio</radio>

Disabled

<radio disabled="disabled">Disabled</radio>
<radio disabled="disabled" checked="checked">Disabled</radio>

Group

<radio-group>
  <radio value="1" checked="checked">A</radio>
  <radio value="2">B</radio>
  <radio value="3">C</radio>
  <radio value="4">D</radio>
</radio-group>