如果未在容器上指定高度100%,则无法使用最新版本的Google Chrome浏览器73.0,无法再使用Web应用程序中的溢出。这是一个错误吗?
答案 0 :(得分:0)
看起来像这样,有人已经写过它了。
答案 1 :(得分:0)
由于无法测试此答案,所以想发表评论,但该帐户的信誉不足。
我已发现this Chromium bug report thread与此问题有关。
有人建议在该线程上将ItemsViewController
设置在容器上,或将min-height: 0
设置在子容器上,这将解决溢出问题。
供以后参考,以供其他用户参考,以下是从Chromium错误报告线程复制的小提琴。
max-height: 100%
#container {
width: 200px;
height: 200px;
border: 1px solid black;
}
.box {
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
height: 100%;
background: rgba(255, 0, 0, 0.1);
}