Answers for "change the size of a checkbox css"

CSS
6

css resize checkbox

input[type=checkbox] {
    transform: scale(1.5);
}
Posted by: Guest on July-19-2020
0

update checkbox size css

input./*checkbox class name*/ {
  width: /*preferred width*/;
  height: /*preferred height*/;
}
Posted by: Guest on July-16-2020

Code answers related to "change the size of a checkbox css"

Browse Popular Code Answers by Language