Hi guys. I want to enlarge the inside diameter of the radio buttons. how can i do this?

Hi guys.
I want to enlarge the inside diameter of the radio buttons.
how can i do this?
2022-01-21_22-20-39

Hello @anvarovnaparizoda <

You can use the transform property for you input.

Example:

#your_div_id input {
	transform: scale(2);
	margin-right: 10px;
	margin-bottom: 15px;
}

I used a div, you can use a div for each part of your form, give them an id if you don’t want to touch all the input tags of your code.

ok
thank you
I understand you

1 Like

Perfect if you understood! You’re welcome :grin:

Hi guys.
I need your help again.
How can I enlarge the inside diameter of this shape?

You can’t. Google “custom checkbox”.

After all, in the sample it is done!
that is, the internal state is magnified! how is this done

input[type=checkbox]
transform: scale(2);
  padding: 10px;
try this

or you can create class for checkbox and add width and height
input./checkbox class name/ {
width : /desired width/;
height : /desired height/;
}

1 Like

Won’t work in all browsers (e.g. Safari).

ok
thank you
my frend

input[type=checkbox]{

transform: scale(1.5);

margin-right: 10px;

margin-bottom: 15px;
My friend paddingmas
while the margin is

}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.