Hi guys.
I want to enlarge the inside diameter of the radio buttons.
how can i do this?
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
Perfect if you understood! You’re welcome
You can’t. Google “custom checkbox”.
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/;
}
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.