美文网首页
checkbox样式

checkbox样式

作者: 小郭米 | 来源:发表于2018-07-16 10:12 被阅读7次

input[type=checkbox] {

    background-image: url(../img/checkbox.png);

    background-repeat: no-repeat

}

 input[type=checkbox]:hover {

    background-image: url(../img/checkbox-hover.png);

    background-repeat: no-repeat

}

 input[type=checkbox]:checked:before {

    background-image: url(../img/checkbox-checked.png);

    background-repeat: no-repeat

}

 input[type=checkbox]:checked:disabled {

    background-image: url(../img/checkbox-checked-disabled.png);

    background-repeat: no-repeat

}

下载可用

相关文章

网友评论

      本文标题:checkbox样式

      本文链接:https://www.haomeiwen.com/subject/zymvpftx.html