JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<p>
   <input type="checkbox" id="id-chek"> 
   <label for="id-chek">아이디 저장</label>
</p>

CSS

p input {
  position:absolute;
  top:0;
  left:0;
  opacity:0;
}
p label {
  position:relative;
  padding:0 0 0 30px;
}
p label:before {
  content:'';
  position:absolute;
  top:4px;
  left:0;
  width: 19px;
    height: 19px;
    background-image: url(//simage.lottemart.com/v3/images/sprite/m-common.png);
    background-position: -149px 0;
    background-size: 320px auto;
}
p input:checked label {
  color:red;
}
p input:checked + label:before {
  background-position: -172px 0;
}