In this scenario, the third div is positioned to the right of the second div rather than the first div. There is space available to the right of the first div, but it is constrained from appearing above the second div.
How can I adjust the placement of the third div so that it aligns with the first div in the black space without:
- using absolute or relative positioning
- relying on specific height values (as it may vary)
- changing the order of the divs (even though it's not ideal from a semantic standpoint for my unique case)
Appreciate any suggestions or solutions. Thanks!