Container div is display flex, but the two child divs do not respond to the flex grow property.This approach seemed to work fine for li's in a ul, what am I doing wrong?
.container {
display: flex;
}
.container .featured {
background: pink;
flex-grow: 1;
}
.container .loaded {
background: lightblue;
flex-grow: 3;
}
<div class="container">
<div class="featured">
<h2>Featured Article</h2>
<p>Lorem Ipsum ihsjrtop fdiubhreg urfhga ergujdfhjbsd fmbn szlriuv vfduvbhl;er vkl.ifhb;oabe rvkdbfvjsh fvnz dfbvzlh g;oiuhv za,rujhvblzubjavznbmsdf v vjlzUBvmzBSv blizU vzUIJBVl;djhb mzcn dvz,bdfrvmzn dcv,zubdfvmn zfv,uzjbdfkbvjnv.zbin.d,vjbnkd bvnzfbzdj
v,jzdfuvblkjdfg ,fdjknb;oizdf b.kfzdnbizd fvbkjzfdb vf</p>
</div>
<div class="loaded">
<h1>Home Page</h1>
</div>
</div>