如何在IE 8中停靠div?

时间:2011-06-02 10:20:46

标签: html internet-explorer internet-explorer-8

你是一个非常善良和聪明的人。请考虑以下HTML:

<html>
<body>
    <div id="Panel1" style="position: absolute; bottom: 0; right: 0; top: 0;
        width: 259; background-color: #00FF00">
        <input type="button" style="position: absolute;
            left: 161; top: 30; width: 75; height: 25" tabindex="3"/>        
    </div>
</body>
</html>

我在这里做的是将div对接到屏幕的右侧,使其从顶部延伸到底部。这在Google Chrome中完美有效,但在IE8中则无效。

我已将页面上传到http://losthobbit.net/temp/testdoc.html,以便让您的生活更轻松。

我是否知道如何在IE中使用它?

谢谢!

2 个答案:

答案 0 :(得分:0)

我必须在我的晚年失去它......

我所要做的就是将高度设置为100%。

答案 1 :(得分:0)

好吧,只需添加一个有效的doctype并完成;)

例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">