I am attempting to create two columns of equal size, containing nested elements with large dimensions and adding overflow: scroll;
. However, the column width is defaulting to 100%. Interestingly, when I apply a small width to the column (
<div class="row">
<div class="col" style="background:blue">
<div style="overflow:scroll;">
<div style="width:10000px;">should be overflowed and 50%</div>
</div>
</div>
<div class="col" style="background:yellow">should be 50%</div>
</div>