Html Checkbox Size Code Example
Example 1: css resize checkbox
input[type=checkbox] {
    transform: scale(1.5);
}Example 2: update checkbox size css
input./*checkbox class name*/ {
  width: /*preferred width*/;
  height: /*preferred height*/;
}input[type=checkbox] {
    transform: scale(1.5);
}input./*checkbox class name*/ {
  width: /*preferred width*/;
  height: /*preferred height*/;
}
Comments
Post a Comment