Advertisement
Guest User

Untitled

a guest
May 26th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <fieldset>
  2. <legend>Radio buttons</legend>
  3. <label class="radio">
  4. <input type="radio" name="radio" value=" " /> Radio 1
  5. </label>
  6. <label class="radio">
  7. <input type="radio" name="radio" value=" " /> Radio 2
  8. </label>
  9. <label class="radio">
  10. <input type="radio" name="radio" value=" " disabled /> Radio 3 Disabled
  11. </label>
  12. </fieldset>
  13.  
  14. <fieldset>
  15. <legend>Radio Inline</legend>
  16. <label for="" class="radio-inline">
  17. <input type="radio" name="radio-inline" /> Radio 1 Inline
  18. </label>
  19. <label for="" class="radio-inline">
  20. <input type="radio" name="radio-inline" /> Radio 2 Inline
  21. </label>
  22. <label for="" class="radio-inline">
  23. <input type="radio" name="radio-inline" /> Radio 3 Inline
  24. </label>
  25. </fieldset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement