Advertisement
julong

custom my checkbox

Aug 5th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Sample Code custom my checkbox
  2. ////////////////////////////////
  3. label{
  4. float:left;
  5. position:relative;
  6. width:80px;
  7. height:80px;
  8. padding-right:5px;
  9. }
  10. label img{
  11. width:80px;
  12. height:80px;
  13. }
  14. label input[type='checkbox']{
  15. position:absolute;
  16. left:0px;
  17. top:0px;
  18. border:10px solid blue;
  19. width:80px;height:80px;
  20. opacity:0.3;
  21. color:red;
  22. }
  23.  
  24. <label class="l">
  25. <img src="http://giant9.com/assets/img/jl.png" >
  26. <input type="checkbox" class="cb" value="1">
  27. </label>
  28. <label class="l">
  29. <img src="http://giant9.com/assets/img/jl.png" >
  30. <input type="checkbox" class="cb" value="2">
  31. </label>
  32. <label class="l">
  33. <img src="http://giant9.com/assets/img/jl.png" >
  34. <input type="checkbox" class="cb" value="3">
  35. </label>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement