圆形复选框


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .custom-checkbox span{
            background-color: white;
            border-radius: 50%;
            border: 2px solid #0073BF;
            width: 20px;
            height: 20px;
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            line-height: 20px;
        }
        .custom-checkbox input[type="checkbox"]{
            display: none;
        }
        .custom-checkbox input[type="checkbox"]:checked + span{
           
            position: relative;
        }
        .custom-checkbox input[type="checkbox"]:checked + span:after{
            content: "";
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            position: absolute;
            background: #0073BF;
            border: #fff solid 2px;
            height: 12px;
            width: 12px;
        }
    </style>
</head>

<body>
    
    <label class="custom-checkbox">
        <input type="checkbox">
        <span></span>
    </label>

    <label class="custom-checkbox">
        <input type="checkbox">
        <span></span>
    </label>

    <label class="custom-checkbox">
        <input type="checkbox">
        <span></span>
    </label>
</body>

</html>

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM