重写checkbox

Posted 吃饭了吗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重写checkbox相关的知识,希望对你有一定的参考价值。

 

 

<html>

<body>

<style>
input[type=\'checkbox\']{
width: 14px;
height: 14px;
background-color: #fff;
appearance:none;
-webkit-appearance:none;
-o-appearance:none;
-moz-appearance:none;
border: 1px solid #FFAD01;
border-radius: 2px;
outline: none;
}
input[type=checkbox]:checked{
background: url("https://localhost/null/checkbox%20selected.svg")no-repeat center;
}

input[type=checkbox]:focus{
outline: none;
}
</style>
<input type="checkbox" class="selected" >
</body>
</html>

以上是关于重写checkbox的主要内容,如果未能解决你的问题,请参考以下文章

阅读《Android 从入门到精通》——多项选择

laravel分页和排序表

验证线性布局中的多个复选框

8复选框单选按钮table定位

knockout checkbinding获取last(de)selected元素

Laravel:如何在没有表单操作的情况下提交复选框值?