views:

19

answers:

1
<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.

+1  A: 

You have to scale them with a custom webkit css property:

input.checkbox {
    -webkit-transform: scale(1.3,1.3);
}
Pat
That's good but not working properly with checkbox
Karandeep Singh