Div会在chrome中调整大小但不会在firefox

时间:2015-12-10 09:17:21

标签: javascript

我的网页上有一个div,我已将属性resize设置为both。它会在Google Chrome中调整大小,但不会在Firefox或Internet Explorer中调整大小。

document.getElementById('IdDivMain').style.height = "394px"
document.getElementById('IdDivMain').style.resize = "both";

1 个答案:

答案 0 :(得分:2)

为什么它在Internet Explorer中不起作用
Internet Explorer中根本不支持resize属性 - 还没有找到关于Edge思想的内容

为什么它在firefox中不起作用
根据{{​​3}}

  

resize不适用于overflow属性设置为visible的块。

默认overflow(至少对于div)是visible - 因此,将溢出设置为visible以外的其他内容应允许resize执行此操作