the following bit of html is meant to show a check box with some text immediatly to it's right. in firefox, opera, and safari, it works. in internet explorer there is a bunch of white space added to the cell the check box is in. is there any way to get internet explorer to behave the same as the other browsers?
Code:
<html>
<body>
<table border="1">
<tr>
<td colspan="2" nowrap="true">a whole bunch of text to make a wide column</td>
</tr>
<tr>
<td style="width: 1px;"><input id="checkbox" type="checkbox" /></td>
<td>some text</td>
</tr>
</table>
</body>
</html>