我正在尝试使用CSS Flexbox(display:flex)来占用窗口的剩余高度。我也希望滚动可用...也许我一直在想这个错误,但一直在寻找其他选项让我望而却步。
这个想法是有一个固定的容器。在该固定容器内是一个占据100%高度的弹性盒。我将项目添加到堆叠在列中的弹性框中。我添加的最后一项(容器包装器)里面有动态内容,它将通过AJAX调用替换HTML(否则我只需将操作栏移到包装器之外并完成它)。此内容包装器也是一个flex容器(以及一个flex项),并设置为随窗口高度增长和缩小。这个flex容器的最后一项应该允许在窗口缩小时滚动。
<!-- The fixed container -->
<div class="fixed">
<!-- The first flex container - direction: column -->
<div class="outer">
<div class="some-flex-item"></div>
<div class="some-flex-item"></div>
<!-- Grow and shrink with 100% of height -->
<div class="container-wrapper">
<!-- inner HTML is dynamic -->
<!-- flex: 0 0 auto -->
<div class="action-bar"></div>
<!-- Want this div to take up remaining height of window
and have overflow-y scrolling -->
<div class="container">
...
</div>
</div>
</div>
</div>
似乎可以在IE 10 +,Chrome中使用,但Firefox不会添加滚动条,因为容器包装器的高度由于内部内容而无限制地增长。我应该提一下,旧版本的Firefox显示正确(我认为~33),但更新版本没有。
我找到了一个解决方法,我在其中创建内部容器位置:relative然后将其内部内容包装在div中,绝对定位设置为0,分别为top,left,bottom,right。 Example here。我不喜欢这个,因为它似乎打败了flexbox布局的目的。有没有办法让这个概念在浏览器中很好地发挥,而不必做标记黑客攻击?
答案 0 :(得分:6)
添加:
.container-wrapper {
min-height: 0;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
html, body {
margin: 0;
height: 100%;
}
.fixed {
position: fixed;
top: 60px;
right: 0;
bottom: 0;
width: 100%;
max-width: 400px;
}
.outer {
border: 1px solid black;
height: 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.outer > * {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
}
.container-wrapper {
-ms-flex: 1 1 100%;
flex: 1 1 100%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-height: 0;
}
.action-bar {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
border-top: 1px solid silver;
border-bottom: 1px solid silver;
padding: 20px;
text-align: right;
}
.container {
-ms-flex: 1 1 100%;
flex: 1 1 100%;
overflow-y: auto;
}
.list {
display: -ms-flexbox;
display: flex;
padding-top: 10px;
padding-bottom: 10px;
border: 1px solid aqua;
}
.display-name {
-ms-flex: 1 1 100%;
flex: 1 1 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-right: 8px;
}
.display-date {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
}
&#13;
<div class="fixed">
<div class="outer">
<div>
<p>Title</p>
</div>
<!-- The inner contents of container-wrapper is dynamic so I cannot
simply move the action-bar item outside -->
<div class="container-wrapper">
<div class="action-bar">
<button>I don't do anything but occupy space</button>
</div>
<!-- Firefox allows this element to grow beyond the remaining space of the container-wrapper
thus expanding the height of the container-wrapper and not allowing scroll -->
<div class="container">
<div class="list">
<div class="display-name">
Display Name
</div>
<div class="display-date">
Mar 31, 2015
</div>
</div>
<div class="list">
<div class="display-name">
Really long name that should be truncated. I don't know
</div>
<div class="display-date">
Mar 31, 2015
</div>
</div>
<div class="list">
<div class="display-name">
Display Name
</div>
<div class="display-date">
Mar 31, 2015
</div>
</div>
<div class="list">
<div class="display-name">
Display Name
</div>
<div class="display-date">
Mar 31, 2015
</div>
</div>
<div class="list">
<div class="display-name">
Display Name
</div>
<div class="display-date">
Mar 31, 2015
</div>
</div>
</div>
</div>
</div>
</div>
&#13;
您需要它,因为Flexbox模块更改了min-height
的初始值:
4.5 Implied Minimum Size of Flex Items
为flex items提供更合理的默认最小尺寸, 本规范引入了一个新的auto值作为初始值 中定义的min-width和min-height属性的值 CSS 2.1。