I'm trying to replicate this layout:
https://i.stack.imgur.com/mUXjU.png
Here is the HTML code I have so far:
<div class="container">
<div class="floatingLeft">A right-aligned div</div>
<div class="a">Lorem Ipsum</div>
<div class="b">Ipsum Lorem</div>
<div class="c">Other</div>
<div class="d">Random</div>
<div class="e">Text</div>
</div>
Is it possible to achieve this using only CSS? It would be great if the right-aligned div could also be vertically centered.
Thank you :)