horizontally scrolling flex child
问题 I have been scowering the web, but can not seem to get a solution to work. Here is an example 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">