How can I make a checkbox bigger?

后端 未结 6 1564
野趣味
野趣味 2021-01-04 20:26

My web page uses checkboxes. They appear very small. I tried to make them bigger by using \"font-size: 1.5em\". This didn\'t seem to change them at all.

Is there a

6条回答
  •  清歌不尽
    2021-01-04 21:18

    Perhaps it seems a little too obvious, but it works:

    input[type='checkbox'] {
        width: 30px;
        height: 30px;        
    }
    

    It works as you might expect on IE and Chrome, and even though it doesn't look like it's bigger on Firefox you still get a larger hit box:

    enter image description here

提交回复
热议问题