How to change the size of the radio button using CSS?

前端 未结 14 1624
野的像风
野的像风 2020-11-28 06:17

Is there a way to control the size of the radio button in CSS ?

14条回答
  •  有刺的猬
    2020-11-28 06:51

    You can also use the transform property, with required value in scale:

    input[type=radio]{transform:scale(2);}
    

提交回复
热议问题