mirror of
https://github.com/Karaka-Management/Developer-Guide.git
synced 2026-01-26 19:08:41 +00:00
add checkbox and radio html example
This commit is contained in:
parent
6d8e52d31d
commit
f27feb766c
|
|
@ -58,6 +58,29 @@ The following snippet creates a dictionary button (e.g. for opening a popup wind
|
||||||
</span>
|
</span>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Checkbox
|
||||||
|
|
||||||
|
The following snippet creates a checkbox.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<label class="checkbox" for="iID">
|
||||||
|
<input id="iID" type="checkbox" name="name" value="1">
|
||||||
|
<span class="checkmark"></span>
|
||||||
|
Text
|
||||||
|
</label>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Radio
|
||||||
|
|
||||||
|
The following snippet creates a checkbox.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<label class="checkbox" for="iID">
|
||||||
|
<input id="iID" type="radio" name="name" value="1">
|
||||||
|
<span class="checkmark"></span>
|
||||||
|
Text
|
||||||
|
</label
|
||||||
|
|
||||||
## Section
|
## Section
|
||||||
|
|
||||||
A section is a container for information that can and should be grouped together.
|
A section is a container for information that can and should be grouped together.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user