Can anyone help with a css problem I'm having?
I am trying to create two columns, each containing dynamic content and images at the bottom of the column. Here is an example image for reference: https://i.sstatic.net/pvOef.png
I want these image blocks to be positioned at the bottom of each column without setting a specific height for each column using position:absolute.
This is what my HTML structure looks like:
<div class="wrapper">
<div class="content">
{text content / dynamic }
<div class="grid"> <!-- image blocks -->
</div>
</div>
<div class="content">
{text content / dynamic }
<div class="grid"> <!-- image blocks -->
</div>
</div>
</div>