Is it possible to change the color of selected radio button's center circle

前端 未结 3 2173
既然无缘
既然无缘 2020-12-13 10:49

Is it possible to style the center circle of a selected radio button, at least in webkit browsers…?

What I have now:

3条回答
  •  萌比男神i
    2020-12-13 11:22

    You could also apply a background-image when the radio button is checked

    [type="radio"]:checked {
        width: 16px;
        height: 16px;
        -webkit-appearance: none;
        background-image:  ...
    }
    

    An example: http://jsfiddle.net/yZ6tM/

提交回复
热议问题