IE8在单列中发出两列合并

时间:2014-04-09 06:03:53

标签: html asp.net html5 aspxgridview

我在IE 8中遇到了将两列数据合并在一列中的问题。我正在使用asp .net代码在动态网站上工作。能帮我解决一下这个问题吗?

在FF代码中就像这样

<tr class="rowstyle">
        <td align="center" class="wt30">
            <img src="../images/attachment_icon.png" id="lnkAttachment">
        </td>
        <td align="center" class="wt30">
            <img class="" onclick="" src="../images/nohistory.png" title="" alt="History" id="lnkHistory">
        </td>
    </tr>

但是在IE8中它看起来像这样

<tr class="rowstyle">
        <td align="center" class="wt30">
            <img src="../images/attachment_icon.png" id="lnkAttachment">
            <img class="" onclick="" src="../images/nohistory.png" title="" alt="History" id="lnkHistory">
        </td>

    </tr>

1 个答案:

答案 0 :(得分:0)

我的IE工作正常。尝试给出border属性,它们看起来相同

<table border=1px></table>