Change checkbox check image to custom image

前端 未结 5 2059
感情败类
感情败类 2020-11-28 08:44

I am trying to change the default \'box image\' of the checkbox with CSS, but it is not working. Is there any way around this?



        
5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-28 09:17

    Maybe will be useful my sample with LESS.

    @imgsize: 25px; .custom-checkbox{ position: relative; > input[type="checkbox"] { display:none; position: absolute; top: 0; left: 0; + label{ background:url('../img/unchecked.png') no-repeat 0 0; background-size:@imgsize; height: @imgsize; padding: 4px 0 5px 35px; display: inline-block; -webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s; transition-duration: 0.3s; } } > input[type="checkbox"]:checked + label{ background:url('../img/checked.png') no-repeat; background-size:@imgsize @imgsize; } }

提交回复
热议问题