OLD | NEW |
(Empty) | |
| 1 <h3 class="sg-h3">Inline fields</h3> |
| 2 |
| 3 <fieldset> |
| 4 <legend>Radio input label</legend> |
| 5 <label> |
| 6 <input type="radio" name="radio-group-example" checked> Radio text |
| 7 </label> |
| 8 <label> |
| 9 <input type="radio" name="radio-group-example"> Radio text |
| 10 </label> |
| 11 <label> |
| 12 <input type="radio" name="radio-group-example"> Radio text |
| 13 </label> |
| 14 </fieldset> |
| 15 |
| 16 <br> |
| 17 |
| 18 <fieldset> |
| 19 <legend>Checkbox input label</legend> |
| 20 <label> |
| 21 <input type="checkbox" name="checkbox-group-example" value="1" checked> Chec
kbox text |
| 22 </label> |
| 23 <label> |
| 24 <input type="checkbox" name="checkbox-group-example" value="2"> Checkbox tex
t |
| 25 </label> |
| 26 <label> |
| 27 <input type="checkbox" name="checkbox-group-example" value="3"> Checkbox tex
t |
| 28 </label> |
| 29 </fieldset> |
OLD | NEW |