绝对位置在IE8中不起作用

时间:2013-03-19 22:10:37

标签: jsp web-applications html internet-explorer-8 position

我需要让我的页面行为与IE8中的Firefox相同。我的页面出了什么问题?

我看到一篇帖子说得太过分了!我的页面中有DOCTYPE HTML。尝试过,但没有奏效。

我要做的是,在第一个文本框下显示“我的名字”文本而不移动它下面的第二个文本框。

在Firefox中:

enter image description here

在IE8中。

enter image description here

    <table>
        <tr>
            <td>
                <input type="text"/>
                <div style="position:absolute;">My name</div>
            </td>
        </tr>
        <tr>
            <td>
                <input type="text"/>
            </td>
        </tr>
    </table>

0 个答案:

没有答案
相关问题