我有一个垂直滚动条,溢出设置为auto,高度为100%

时间:2015-08-04 07:39:40

标签: html css microsoft-edge

我们在使用Microsoft Edge的网站中遇到了问题。在.ic3-report-content-container中可以看到一些垂直滚动条。查看网站here

CSS是:

.ic3-report-content-container {
    height: 100%;
    overflow:auto;
}

如果高度为100%,Edge显示垂直溢出怎么可能?

容器div - 父.ic3-report-editor - 具有正确的高度。不知何故,这个div的高度较小(没有边框,没有填充,没有边距......)

删除溢出或放置overflow-x:auto;overflow-y:hidden;可解决此问题。这是正常的,还是Edge bug?

1 个答案:

答案 0 :(得分:0)

div.ic3-report-content-container的内部内容超出了框的边界,因此只需添加:

.ic3-report-content-container {overflow: hidden;}

摆脱卷轴。