[wd_asp elements=’search’ ratio=’100%’ id=1]

Change the size of a checkbox using CSS

17th October 2014

CSS

Css - Codehaven

For a really easy way, use the following code, it will change the size of a small black outline check box, to a nice large one, better to click and larger for poorly sighted users. It will create a large tick.

.mycheckbox {
transform: scale(1.6, 1.6)
margin: 15px !important;
}

There is another way to write that code but its longer!!!! Way longer…but theres other bits that help!