How to freely use flex content inside flex content? I'm trying to make the entire display of a website using flex boxes and I'm stuck in the nav part. I want to put a logo on the left and the subscription bottom on the other side.
In my example below, I'm trying to write the number 1 on the left and 3 on the extreme right. How can I achieve it?
.container {
font-size: 300px;
display: flex;
flex-direction: column;
}
.box1 {
background-color: blue;
display: flex;
justify-content: space-between;
}
.box2 {
background-color: pink
}
<div class="container">
<div class="box1">1 3</div>
<div class="box2">2</div>
</div>