It's a pretty straightforward request. I need the div
to be positioned at the bottom of the page, with two images centered inside it.
<div class="social">
<img src="facebook.png" alt="Facebook"/>
<img src="instagram.png" alt="Instagram"/>
</div>
I've tried various approaches with no success, as I don't have any applicable CSS
. The closest I got was using text-align:center
for the <div>
, but that didn't achieve the desired effect of positioning it at the bottom of the page.