我正在尝试将中央面板设置为嵌套的flexbox项目中的可滚动区域(x和y)。
html,
body {
width: 100%;
height: 100%;
margin: 0;
color: #fff;
}
.layout {
display: flex;
align-items: stretch;
flex-wrap: nowrap;
width: 100%;
}
.layout.horizontal {
flex-direction: row;
}
.layout.vertical {
flex-direction: column;
}
.pane {
position: relative;
flex: 1;
}
.fill {
min-height: 100%;
height: 100%;
}
.scrollable {
overflow-x: auto;
overflow-y: auto;
}
.content {
background-color: salmon;
display: flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
}
/* Colour Highlighting */
.layer1 > .pane:nth-child(1) {
background-color: steelblue;
}
.layer1 > .pane:nth-child(2) {
background-color: plum;
}
.layer1 > .pane:nth-child(3) {
background-color: lightsteelblue;
}
.layer2 > .pane:nth-child(1) {
background-color: darkseagreen;
}
.layer2 > .pane:nth-child(2) {
background-color: seagreen;
}
.layer2 > .pane:nth-child(3) {
background-color: lightseagreen;
}
<div class="layout horizontal fill layer1">
<div class="pane">
LEFT
</div>
<div class="pane">
<div class="layout vertical fill layer2">
<div class="pane">
TOP
</div>
<div class="pane scrollable">
<div class="content">CONTENT</div>
</div>
<div class="pane">
BOTTOM
</div>
</div>
</div>
<div class="pane">
RIGHT
</div>
</div>
注意:将示例扩展为完整窗口模式。
在非嵌套方案中,水平滚动适用于中央面板:
但是,嵌套时,中央面板的水平滚动不会按预期激活。这似乎是Chrome,Firefox和Edge的情况。有趣的是它在IE11中按预期工作,这表明现代浏览器正确地解释了我不知道的一些规范。
我错过了什么?
更新:似乎设置溢出:需要外部中心列上的auto。有了它,它的行为符合预期。这是为什么?
答案 0 :(得分:-2)
不知道我是否知道你想要什么,但你是否尝试在{c}中加@media
然后放overflow-x:scroll
?