I am facing an issue with two divs in a flex container where I want them to be displayed on separate lines when they overflow
.container {
background: wheat;
padding: 10px;
width: 300px;
display: flex;
justify-content: space-between;
}
<div class="container">
<div>Lorem ipsum dolor sit amet 1</div>
<div>Lorem ipsum dolor sit amet 2</div>
</div>