<div class="checkbox">
<label>
<input type="checkbox"/>
选择框
</label>
</div>
.checkbox {
position: relative;
cursor: pointer;
}
.checkbox input {
opacity: 0;
}
.checkbox:before {
content: "";
display: block;
position: absolute;
width: 20px;
height: 100%;
background: url(xxx);
}
时间: 2024-10-14 00:44:21