针对ckeckbox选中后背景和内容有白色打勾

方法有多种。

暂时只写最简单css

.inputBox{

display:block;width:16px;height:16px;border:1px solid #ccc;background:#fff;text-align: center;line-height: 16px;

}

  .inputBox.checked{background:#f00;}

  .inputBox.checked:after{content:"√"}

你可能感兴趣的:(针对ckeckbox选中后背景和内容有白色打勾)