My HTML is similar to the following example:
<div class="wrapper">
<div class="wrapper_item">1</div>
<div class="wrapper_item">2</div>
<div class="wrapper_item">3</div>
<div class="wrapper_item">4</div>
<div class="wrapper_item">5</div>
<div class="wrapper_item">6</div>
<div class="wrapper_item">7</div>
</div>
And I need layout like this:
The height of blocks can be different.
How can I do it with flexbox without other wrappers?