I am looking into a way
I have a main div and 2 other div's inside.
.main {
display: flex;
justify-content: space-between;
}
<div class="main">
<div>Goes in the Middle</div>
<div>Goes on the right</div>
</div>
What I need is the the space-between to space the 2 div's out as if it has 3 div's but only with 2.
How can I do this with flex without having 3 divs?