How to style a checkbox using CSS

前端 未结 30 4272
日久生厌
日久生厌 2020-11-21 04:26

I am trying to style a checkbox using the following:

30条回答
  •  生来不讨喜
    2020-11-21 05:04

    This is simplest way and you can choose which checkboxes to give this style.

    CSS:

    .check-box input {
      display: none;
    }
    
    .check-box span:before {
      content: ' ';
      width: 20px;
      height: 20px;
      display: inline-block;
      background: url("unchecked.png");
    }
    
    .check-box input:checked + span:before {
      background: url("checked.png");
    }
    

    HTML:

    
    

提交回复
热议问题