Created 12/2005
Larger Checkbox with CSS
Resizes inputs of type checkbox in MSIE6/Windows and Firefox. Does not change the size of checkboxes in Safari.
HTML Source
<form action="./"> <input type="checkbox" class="largerCheckbox" name="checkBox"> </form>
Source Code
<style type="text/css">
<!--
input.largerCheckbox
{
width: 30px;
height: 30px;
}
//-->
</style>
