Flag size in safari?

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

I want to increase the size of the checkbox, but this code works correctly in Internet Explorer, but not in Safari.

+6
css checkbox safari
source share
2 answers
 input[type=checkbox] { -webkit-transform: scale(3,3); } 
+17
source share

You must scale them using your own webkit css property:

 input.checkbox { -webkit-transform: scale(1.3,1.3); } 
+1
source share

All Articles