mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-25 06:39:53 +00:00
26 lines
563 B
Markdown
26 lines
563 B
Markdown
|
---
|
||
|
layout: page
|
||
|
title: Custom forms
|
||
|
---
|
||
|
|
||
|
{% example html %}
|
||
|
<label class="c-input c-checkbox">
|
||
|
<input type="checkbox">
|
||
|
<span class="c-indicator"></span>
|
||
|
Check this custom checkbox
|
||
|
</label>
|
||
|
{% endexample %}
|
||
|
|
||
|
{% example html %}
|
||
|
<label class="c-input c-radio">
|
||
|
<input id="radio1" name="radio" type="radio">
|
||
|
<span class="c-indicator"></span>
|
||
|
Toggle this custom radio
|
||
|
</label>
|
||
|
<label class="c-input c-radio">
|
||
|
<input id="radio2" name="radio" type="radio">
|
||
|
<span class="c-indicator"></span>
|
||
|
Or toggle this other custom radio
|
||
|
</label>
|
||
|
{% endexample %}
|