ie browser has a checkbox alignment problem actully ie take default size of checkbox which is width 20px and height 20px but other browser does not take this property so i want to change the size of input box
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style >
*{margin:0px; height:0}
.jitu {width:40px; height:40px;}
</style>
</head>
<body>
<input type="checkbox" class="jitu" size="10" />
</body>
</html>