我可以在IE 8中将div与另一个div对接吗?

时间:2011-06-02 12:36:14

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

考虑此页面:http://losthobbit.net/temp/docking.html

这是HTML:

<html>
<head>
    <title></title>
</head>
<body>
    <div 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"/>  
    </div>    
    <div style="position: absolute; bottom: 0; right: 259; left: 0; height: 100; background-color: #00FFFF">
        <input type="button" style="position: absolute; right: 10; top: 30; width: 75; height: 25"/>  
    </div>
</body>
</html>

在Chrome&amp; FireFox完美无缺。第二个div与第一个div对接。

是否可以在IE8中使用它?

提前谢谢你,精彩的人:)

2 个答案:

答案 0 :(得分:1)

将单位“px”添加到您的css值中。 IE更喜欢它,不像FF或Ch那样宽容:)

答案 1 :(得分:1)

http://jsfiddle.net/X2QYs/

试试这个,做你所问的。

不确定为什么你会想要这样做,但不像我以前见过的任何网页设计。