I'm designing a basic layout using flexbox.
I've tried the following code but it's not working:
<div id="wrapper">
<div id="container">
<div id="div1">1</div>
<div id="div2">2</div>
</div>
<div id="div3"></div
</div>
#wrapper {display:flex;flex-direction:row;}
#div1, #div2 {display:block;}
#container, #div3 {flex:1};
The code can be changed as needed.
