0
固定(位置固定)2列レイアウトを作成しようとしています。 2番目の列(この例では黄色)は最初の列とは独立してスクロールすることが許され、3番目の列は独立してスクロール可能でなければなりません(この例では赤)。固定フレックスボックスレイアウト内のスクロール可能領域
これらのdivのオーバーフローを設定しようとしましたが、無視されてコンテンツがスクロールされないようです。
以下の例と添付のjsFiddleを参照してください。
<div style="display: flex; flex-flow: column nowrap; justify-content: flex-start; align-content: stretch; align-items: stretch; position: fixed; top: 0px; bottom: 0px; right: 0px; left: 0px;">
<div style="order: 0; align-self: auto; flex: 0 1 3em;">
<div style="background: orange;">Announcements</div>
</div>
<div style="order: 0; align-self: auto; flex: 1 1 auto;">
<div style="display: flex; flex-flow: row nowrap; justify-content: flex-start; align-content: stretch; align-items: stretch;">
<div style="order: 0; align-self: auto; flex: 1 1 auto;">
<div style="display: flex; flex-flow: column nowrap; justify-content: flex-start; align-content: stretch; align-items: stretch;">
<div style="order: 0; align-self: auto; flex: 0 1 2em;">
<div style="background: rgb(139, 139, 222);">Menu</div>
</div>
<div style="order: 0; align-self: auto; flex: 1 1 auto;">
<div style="display: flex; flex-flow: column nowrap; justify-content: flex-start; align-content: stretch; align-items: stretch;">
<div style="order: 0; align-self: auto; flex: 0 1 2em;">
<div style="background: green;">SubMenu</div>
</div>
<div style="order: 0; align-self: auto; flex: 1 1 auto;">
<div style="overflow: auto; background: rgb(224, 71, 71);">Content
<div>0</div>
...
<div>99</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="order: 0; align-self: auto; flex: 0 1 18em;">
<div style="overflow: auto; background: yellow;">FilterSets
<div>0</div>
...
<div>99</div>
</div>
</div>
</div>
</div>
</div>
https://jsfiddle.net/btm5cazr/3/
代わりのオーバーフローです:自動車用のオーバーフロー:スクロールして、彼らは –
はあまりにも、残念ながら – Pete
に動作しないことをしようとしましたスクロール可能になりますhttps://jsfiddle.net/ua9kqo29/これが正しいですか? –