I’m working on a site and the checkboxes are stretched, I’m using IE 8 and 9,
any idea how to fix this?
That’s probably because you are setting the width of all inputs somewhere else. Set the width of the checkbox to auto with an over-riding class.
Or for IE7 upwrads.
input[type=checkbox]{width:auto!important}
Of course that’s just a wild guess as you offer no specific details