Is there a way to make three divs with fixed heights expand outside a full-width parent div, but only in terms of height, not width?
Imagine the scenario depicted in the image below:
What approach would be most effective in achieving this design?
Check out the following HTML snippet for reference:
<div class="background">
<div class="container">
<div class="one">1</div>
<div class="two">2</div>
<div class="three">3</div>
</div>
</div>