Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make radio button bigger?

Is there any way to make a radio button bigger using CSS?

If not, how else can I do it?

like image 346
Latox Avatar asked Dec 23 '10 05:12

Latox


People also ask

How do I make my radio button bigger in HTML?

Radiobutton looks better with "transform" than using "width" and "height" and it's much simpler than the other solutions. It actually does not look that bad to me. I tested on IE 11, Chrome and FF and they looked fine. Thanks!

How do I resize a radio button?

You cannot change the size of the radio button. Typically people will design a custom UI element to replace the UI aspect of the checkbox/radiobutton. Clicking it results in a click on the underlying checkbox/radio button.

How do I increase the size of a radio button in Excel?

Right click on the Radio Button added and click 'Format Control'. In 'Format Controls' dialog box, under 'Control' tab refer to the cell where you want to display the value of the selected Radio Button. In this example, I selected 'G3' cell to display the selected Radio Button.

How do I increase the font size of a radio button?

The text is beside the radio button, not inside it. First, add a <label> element (make sure the for attribute matches the id of the input with which it is associated, this will link them so people will have a bigger click target and screen reader users will know which label belongs with which control).


1 Answers

Try this code:

 input[type='radio'] {       transform: scale(2);   } 
like image 167
Manish Patel Avatar answered Sep 17 '22 22:09

Manish Patel