如何改变这个的圆角">css input[type="checkbox"] { width: 1.64rem; height: 1.64rem; display: inline-block; text-align: center; vertical-align: baseline; line-height: 1_如何改变这个的圆角">
当前位置:   article > 正文

css重点16:设置Input:chechkbox的样式改成圆角 修改里面的内容_如何改变这个的圆角

如何改变这个的圆角

html

<input type="checkbox" />
  • 1

css

 input[type="checkbox"] {
            width: 1.64rem;
            height: 1.64rem;
            display: inline-block;
            text-align: center;
            vertical-align: baseline;
            line-height: 1.64rem;
            position: relative;
            border-radius: 50%;
            outline: none;
            -webkit-appearance: none;
            ​border: 1px solid #fff;
            -webkit-tab-highlight-color: rgba(0, 0, 0, 0);
            color: #fff;
            background: #fff;
            margin-left: 3px;

        }

        input[type="checkbox"]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background: #fff;
            width: 100%;
            height: 100%;
            border: 1px solid #999999;
            border-radius: 50%;
            color: #fff;
            margin-top: 5px;
        }

        input[type=checkbox]:checked::before {
            content: "\2713";
            /* background-color: #657afe; */
            border: 1px solid #657afe;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            color: green;
            font-size: 1.52rem;
            border-radius: 50%;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

效果图:

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/150844
推荐阅读
相关标签
  

闽ICP备14008679号