checkbox默认样式

Posted

tags:

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

参考技术A html部分

<label><input type="checkbox">保存密码</label>

css部分

使用伪类元素对checkbox样式进行修改

边框样式在before中修改,"\2713"为字符表勾选字符

input[type="checkbox"]

    width: 20px;

    height: 20px;

    display: inline-block;

    text-align: center;

    vertical-align: middle;

    line-height: 18px;

    margin-right: 10px;

    position: relative;



input[type="checkbox"]::before

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    background: #fff;

    width: 100%;

    height: 100%;

    border: 1px solid #d9d9d9;

    border-radius: 4px;



input[type="checkbox"]:checked::before

    content: "\2713";

    background-color: #fff;

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    border: 1px solid #7D7D7D;

    border-radius:4px;

    color: #7D7D7D;

    font-size: 20px;

    font-weight: bold;

checkbox选中改变默认样式,改变颜色,一般用背景图

###checkbox选中改变默认样式,改变颜色,一般用背景图

.cconte div input[type='checkbox']

    position: absolute;

    left:-0.2rem;

    top: .1rem;

    -webkit-appearance: none; 

    appearance:none;//去掉复选框的默认背景样式

    -moz-appearance:none;

    display: block;

    width: .16rem;

    height: .16rem;

    border:1px solid #B5B5B5;

    outline: none;

    border-radius: 2px;

.cconte div input[type='checkbox']:checked

    background: url(/crm/images/icon/866.png) no-repeat center /cover;

    border:none;

 <div class="cconte cconte0 disflexcoum flexstart">

        <div class="">

         <input type="checkbox" checked="checked" name="brand0hs" value="1">

</div>

</div>

 

 

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

改变默认的多选框 checkbox 样式~

checkbox选中改变默认样式,改变颜色,一般用背景图

checkbox选中改变默认样式,改变颜色,一般用背景图

求checkbox css样式

android 如何改变checkbox样式

怎样改变checkbox的默认蓝色