How to make checkboxes rounded?

后端 未结 4 1021
离开以前
离开以前 2021-02-04 03:13

Is there any way to make checkboxes with rounded corners using bootstrap or some css property?

4条回答
  •  粉色の甜心
    2021-02-04 03:44

    Try with this css:

    .checkbox-round {
        width: 1.3em;
        height: 1.3em;
        background-color: white;
        border-radius: 50%;
        vertical-align: middle;
        border: 1px solid #ffffd;
        -webkit-appearance: none;
        outline: none;
        cursor: pointer;
    }
    
    .checkbox-round:checked {
        background-color: gray;
    }
    

提交回复
热议问题