Here is the HTML code that I am currently using:
<table class="question" cellpadding="0" cellspacing="0" border="0" width="99%">
<tr bgcolor="#ffffff">
<td style="width:5px;" height="10" text-align="left">hello</td>
</tr>
</table>
The desired output (working in all browsers except IE7) should be:
hello
In IE7, however, the output appears as follows:
hello // An extra space is added at the beginning of the text
My issue lies with the alignment of text inside the td tag specifically in IE7. Despite searching online, I have not been able to find a satisfactory solution. Any assistance would be greatly appreciated.