I’m using Flexbox, I want to create container that contains two divs in one row. One of them should be horizontally centered(relatively to container) and second one should be on the left(like it wouldn't be justified). Is there any solution that doesn’t require a third, hidden div?
Unfortunately both of divs don’t have specified width.
Here is the structure of html:
<div class="container">
<div>Div on the left</div>
<div>Horizontally centered div</div>
</div>