I have the follwing:
.container {
display: flex;
justify-content: center;
flex-direction: row;
}
.el1 {
margin-right: 10vw;
}
.el2 {}
.el3 {}
<div class="container">
<Button class="el1">Info</Button>
<input class="el2"></input>
<Button class="el3">Search</Button>
</div>
The problem is, that this created two centered elements
and the first element
having an unknown position
since it depends on the screen size
.
Instead, I want it to be next to the beginning of the screen
on the left
side, left aligned
with the other two elements
sitting in the center of the screen
.