I am just learning flexbox. Could someone explain where the outter scrollbar comes from and how it would be correct?
https://stackblitz.com/edit/web-platform-ug7ncu?file=index.html
<div style="display: flex; flex-direction: column; width: 100%; height: 100%;flex: 1 0 auto;">
<div style="flex: 1 0 auto;">
<div>something</div>
</div>
<div style="flex: 1 0 auto; height: 100%">
<div style="display: flex; width: 100%; height: 100%;flex: 1 0 auto;">
<div style="flex: 1 0 auto;overflow: auto; height: 100%; background-color: black">
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
<p>x</p>
</div>
<!--<div style="flex: .."></div>-->
</div>
</div>
</div>