修改checkbox默认样式

该博客介绍了如何使用CSS伪元素`::before`和`::after`来美化HTML的复选框(checkbox)。提供了两种不同的实现方式,一种通过背景颜色和边框变化展示选中状态,另一种则用字符`√`表示选中。这两种方法都涉及到绝对定位、背景颜色、边框样式等CSS属性的应用,可以用于前端界面的细节优化。
摘要由CSDN通过智能技术生成

代码1:

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: #083258;
    width: 100%;
    height: 100%;
    border: 2px solid #2F6583;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 2px;
}

input[type="checkbox"]:checked::before {
    content: "";
    background-color: #00FFFF;
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: none;
    border-radius: 0px;
    font-size: 0px;
    font-weight: bold;
}

效果1:

 

代码2:

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;
}

效果2:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

图图小淘气_real

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值