How to make checkboxes rounded?

后端 未结 4 1018
离开以前
离开以前 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:35

    I thing the best way to make a rounded corners is by using the border-radius property. This site has a nice collection of checkboxes. For example:

    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    border-radius: 10px;
    

    The last line(border-radius: 10px) will give you a checkbox with rounded corners.

提交回复
热议问题