在Chrome 47上(正确的行为):
在chrome 47上,带有.scroll
的div正确滚动,使用flex获取高度100%。
on firefox(行为错误):
在Firefox上,.scroll
的div正在使用内容高度而不是正确滚动。
这个问题的跨浏览器解决方案是什么?
for (var i = 0; i < 100; i++)
$(".scroll").append("Dynamic content<br>");
body,
html {
margin: 0;
padding: 0;
}
.container {
box-sizing: border-box;
position: absolute;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.content {
background: yellow;
flex: 1;
display: flex;
flex-direction: column;
}
.scroll {
flex: 1 1 auto;
overflow: scroll;
}
<div class="container">
<div class="bar">Small</div>
<div class="content">
<div>Static content</div>
<div class="scroll"></div>
<div>Static content</div>
</div>
<div class="footer">Small</div>
</div>
更新问题,以区分Chrome 47和Chrome 48。
答案 0 :(得分:14)
更新了flexbox规范,使灵活项目的默认最小大小等于内容的大小:min-width: auto
/ min-height: auto
。
您可以使用min-width: 0
/ min-height: 0
:
.content {
background: yellow;
flex: 1;
display: flex;
flex-direction: column;
min-height: 0; /* NEW */
min-width: 0; /* NEW */
}
http://jsfiddle.net/d4nkevee/1/
错误报告:https://bugzilla.mozilla.org/show_bug.cgi?id=1043520
以下是规范中的一些细节:
4.5. Implied Minimum Size of Flex Items
为flex项提供更合理的默认最小大小,这个 规范引入了一个新的
auto
值作为初始值 CSS 2.1中定义的min-width
和min-height
属性。 (read more)
<强>更新强>
Chrome似乎已更新其渲染行为。 Chrome 48现在可以根据最小的弹性尺寸来模拟Firefox。
根据以下链接中的报告,上述解决方案也适用于Chrome 48。