0

我正在使用以下 html 代码:

<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>

所需的输出(进入除 IE7 之外的所有浏览器):

  hello

在 IE 7 中获得以下输出:

              hello //extra space is being added in the beginning of the text

我的问题是 IE7 中 td 标记内的文本对齐方式。我在互联网上搜索,但找不到任何满意的答案。任何帮助将不胜感激。

4

1 回答 1

0

我对 td.increased 到 10px 的宽度有疑问,它工作正常。感谢李斯特先生提出同样的建议。

<td style="width:10px;" height="10" text-align="left">hello</td>

于 2013-11-13T07:23:14.860 回答