Change checkbox size with CSS

Here is the CSS-code how to change the checkbox, so it gets a bigger size.

input[type=checkbox] {
    margin: 4px 0 0;
    line-height: normal;
    width: 20px;
    height: 20px;
}

New:
image

Old:
image

CSS can be added to the CSS-tab of the page

4 Likes