单选按钮样式修改

单选按钮样式修改

在单选按钮中,默认样式是不能修改的,但我们可以自己写样式替换默认样式,主要用到伪类input:checked
label没有将input包裹的话,需要用for来关联input的id
效果:
在这里插入图片描述

<style>
label {
position: relative;
padding-left: 1rem;
}
label::before {
content: '';
width: 0.6rem;
height: 0.6rem;
border: 1px #ccc solid;
border-radius: 50%;
display: inline-block;
position: absolute;
top: 50%;
margin-top: -0.3rem;
left: 0;
box-sizing: border-box;
}
input {
display: none;
}
input:checked+label::before{
border: 1px #F05D4E solid;
}
input:checked+label::after {
content: '';
width: 0.3rem;
height: 0.32rem;
display: inline-block;
border-radius: 50%;
position: absolute;
top: 50%;
margin-top: -0.15rem;
background: #F05D4E;
left: 0.15rem;
}
</style>
<input type="radio" name="laiyuan" value="淘宝" id="taobao"><label for="taobao">淘宝</label>
<input type="radio" name="laiyuan" value="天猫" id="tamll"><label for="tamll">天猫</label>
<input type="radio" name="laiyuan" value="京东" id="jd"><label for="jd">京东</label>
<input type="radio" name="laiyuan" value="拼多多" id="pinduoduo"><label for="pinduoduo">拼多多</label>
<input type="radio" name="laiyuan" value="阿里巴巴" id="1688"><label for="1688">阿里巴巴</label>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值