what2watch/scss/plugins/radio/readme.md

14 lines
290 B
Markdown
Raw Normal View History

2023-09-22 00:43:18 +00:00
## Radio button
A simple way of using radiobuttons
```html
<label>
<input type='radio' name="radiodemo">
<span class="checkable">Select me</span>
</label><br><br>
<input id="radiodemo" checked type='radio' name="radiodemo">
<label for="radiodemo" class="checkable">Or me</label>
```