Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. input[type=checkbox] {
  2. display:none;
  3. }
  4.  
  5. .my_label {
  6. display: inline-block;
  7. cursor: pointer;
  8. font-size: 13px;
  9. margin-right:15px;
  10. margin-bottom:8px;
  11. line-height:18px;
  12. }
  13.  
  14. .my_label:before {
  15. content: "";
  16. width: 15px;
  17. height: 15px;
  18. display: inline-block;
  19. vertical-align:middle;
  20. text-align: center;
  21. box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
  22. background-image: url("images/checkbox-bg.gif");
  23. }
  24.  
  25. input[type=checkbox]:checked + .my_label:before {
  26. background: url("images/checkbox-checked-bg.gif");
  27. font-size: 15px;
  28. }
  29.  
  30. <input type="checkbox" id="my_checkbox"> <label for="my_checkbox" class="my_label">
  31.  
  32. <input class="my_checkbox_class" id="my_checkbox_id" onclick="my_function()">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement