首页 > 其他 > 详细

radio自定义样式

时间:2020-12-19 21:20:18      阅读:41      评论:0      收藏:0      [点我收藏+]

话不多说先上图

   默认效果:

技术分享图片技术分享图片

  自定义效果:

技术分享图片技术分享图片

上代码

  HTML

<!DOCTYPE html>
<html>
<head>
    <title>radio test</title>
</head>
<body>
    <div style="position:relative;">
        <span style="font-weight: bold;">性别:</span>
        <input type="radio" id="radio1" class="my-radio" name="radioTest" />
        <label class="radio-label" for="radio1"></label>
        <input type="radio" id="radio2" class="my-radio" name="radioTest" />
        <label class="radio-label" for="radio2"></label>
        <input type="radio" id="radio3" class="my-radio" name="radioTest" />
        <label class="radio-label" for="radio3"></label>
    </div>
</body>
</html>

  CSS

.my-radio {
    position: relative;
    z-index: 1;
}
.my-radio:checked::after {
    content: ‘‘;
}
.my-radio::before {
    content: ‘‘;
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #0084FF;
}
.my-radio::after {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: #0084FF;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.radio-label {
    font-size: 14px;
    display: inline-block;
}


END.

radio自定义样式

原文:https://www.cnblogs.com/swcffgh/p/14160422.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!