私はウェブを威嚇していますが、解決策を得ることはできません。フレックスチャイルドを水平にスクロール
ここがcodepen例である:
http://codepen.io/anon/pen/Wxjjqp
.container {
display: flex;
}
.horizontally-scrolled-items {
display: flex;
background: lightblue;
overflow-x: scroll;
}
.item {
width: 1000px;
border: 1px solid blue;
}
HTML:
<div class="container">
<div class="horizontally-scrolled-items">
<div class="item">item1</div>
<div class="item">item2</div>
<div class="item">item3</div>
</div>
<div class="aside">
<button>keep me on screen</button>
</div>
</div>
アイデアは、フレックスことがhorizntally・スクロール・アイテムのためのものである:1。項目がコンテナの幅よりも大きい場合は、スクロールして、ビューには残します。