Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

checkbox size in safari?

<style>  
input.checkbox  
{  
    width:300px;  
    height:300px;  
    margin:0px 0 0 0px;  
}  
</style>  
<body>  
<input type="checkbox" class="checkbox"/>

Iwant to increase the checkbox size, but this code is properly work in Internet Explorer, but not in Safari.

like image 659
Karandeep Singh Avatar asked Jul 16 '10 12:07

Karandeep Singh


People also ask

How do you give a border radius to a checkbox?

For example: cursor: pointer; position: absolute; width: 20px; height: 20px; top: 0; border-radius: 10px; The last line (border-radius: 10px) will give you a checkbox with rounded corners.


1 Answers

input[type=checkbox] {
    -webkit-transform: scale(3,3);
}
like image 147
tyler Avatar answered Sep 28 '22 14:09

tyler